Home
last modified time | relevance | path

Searched refs:TInt (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/clang/test/SemaTemplate/
H A Dtemp_arg_template_cxx1z.cpp69 template<template<int> typename T> struct TInt {}; struct
80 TInt<Auto> ia;
81 TInt<AutoPtr> iap; // FIXME: ill-formed (?)
82 TInt<DecltypeAuto> ida;
83 TInt<Int> ii;
84 TInt<IntPtr> iip; // expected-error {{different template parameters}}
118 TInt<SubstFailure> isf; // FIXME: this should be ill-formed
H A Dms-class-specialization-duplicate.cpp6 typedef int TInt; typedef
9 template class A<TInt>; // expected-warning {{duplicate explicit instantiation of 'A<int>' ignored …
/llvm-project-15.0.7/clang/test/Parser/
H A Dtypeof.c3 typedef int TInt; typedef
11 typeof(TInt) anInt; in test()
12 short TInt eee; // expected-error{{expected ';' at end of declaration}} in test()
/llvm-project-15.0.7/clang/test/Sema/
H A Darray-init.c19 typedef int TInt = 1; // expected-error{{illegal initializer (only variables can be initialized)}} in func() typedef
/llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/
H A Dpro-type-member-init.cpp55 Template<int> TInt; in instantiate() local