Home
last modified time | relevance | path

Searched refs:same_type (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/clang/test/CXX/lex/lex.literal/lex.ext/
H A Dp11.cpp5 template<typename T, typename U> struct same_type;
6 template<typename T> struct same_type<T, T> {}; struct
15 same_type<decltype(a), int> test_a;
16 same_type<decltype(b), double> test_b;
21 same_type<decltype(c), char> test_c;
22 same_type<decltype(d), int> test_d;
H A Dp7.cpp8 template<typename T, typename U> struct same_type;
9 template<typename T> struct same_type<T, T> {}; struct
22 same_type<decltype(v1), long double> test1; in main()
23 same_type<decltype(v2), std::string> test2; in main()
24 same_type<decltype(v3), unsigned> test3; in main()
/llvm-project-15.0.7/clang/test/SemaCXX/
H A Dcxx0x-initializer-stdinitializerlist.cpp41 struct same_type { static const bool value = false; }; struct
43 struct same_type<T, T> { static const bool value = true; }; argument
114 static_assert(same_type<decltype(deduce({1, 2, 3})), int>::value, "bad deduction"); in argument_deduction()
115 static_assert(same_type<decltype(deduce({1.0, 2.0, 3.0})), double>::value, "bad deduction"); in argument_deduction()
119 static_assert(same_type<decltype(deduce_ref({1, 2, 3})), int>::value, "bad deduction"); in argument_deduction()
120 static_assert(same_type<decltype(deduce_ref({1.0, 2.0, 3.0})), double>::value, "bad deduction"); in argument_deduction()
137 static_assert(same_type<decltype(l), std::initializer_list<int>>::value, ""); in auto_deduction()
138 static_assert(same_type<decltype(l3), int>::value, ""); in auto_deduction()