Home
last modified time | relevance | path

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

/aosp_15_r20/external/clang/test/CodeGenCXX/
H A Dexplicit-instantiation.cpp25 constexpr int constexpr_function() { return 0; } in constexpr_function() function
30 constexpr int a = S<char>().constexpr_function();
35 constexpr int c = S<int>().constexpr_function();
45 template<typename T> constexpr int constexpr_function() { return 0; } in constexpr_function() function
49 constexpr int e = constexpr_function<char>();
53 extern template int constexpr_function<int>();
55 constexpr int g = constexpr_function<int>();
63 template int constexpr_function<char>();
65 template int constexpr_function<int>();