Home
last modified time | relevance | path

Searched refs:constexpr_function (Results 1 – 2 of 2) sorted by relevance

/llvm-project/clang/test/CodeGenCXX/
H A Dexplicit-instantiation.cpp28 constexpr int constexpr_function() { return 0; } in constexpr_function() function
33 constexpr int a = S<char>().constexpr_function();
38 constexpr int c = S<int>().constexpr_function();
48 template<typename T> constexpr int constexpr_function() { return 0; } in constexpr_function() function
52 constexpr int e = constexpr_function<char>();
56 extern template int constexpr_function<int>();
58 constexpr int g = constexpr_function<int>();
66 template int constexpr_function<char>();
68 template int constexpr_function<int>();
/llvm-project/clang/test/SemaCXX/
H A Dattr-likelihood.cpp158 constexpr int constexpr_function() { in constexpr_function() function
161 static_assert(constexpr_function() == 0);