Lines Matching defs:make_name
1094 consteval const char* make_name(const char* name) { return name;}
1099 tester glob1(make_name("glob1"));
1100 tester glob2(make_name("glob2"));
1101 constexpr tester cglob(make_name("cglob"));
1102 tester paddedglob(make_name(pad(bad))); // expected-error {{call to consteval function 'GH58207::tester::tester' is not a constant expression}} \
1105 constexpr tester glob3 = { make_name("glob3") };
1106 constexpr tester glob4 = { make_name(pad(bad)) }; // expected-error {{call to consteval function 'GH58207::tester::tester' is not a constant expression}} \
1110 auto V = make_name(pad(3));
1111 auto V1 = make_name(pad(bad)); // expected-error {{call to consteval function 'GH58207::make_name' is not a constant expression}} \
1116 static tester loc1(make_name("loc1"));
1117 static constexpr tester loc2(make_name("loc2"));
1118 static tester paddedloc(make_name(pad(bad))); // expected-error {{call to consteval function 'GH58207::tester::tester' is not a constant expression}} \
1123 static tester paddedloc(make_name(pad(bad))); // expected-error {{call to consteval function 'GH58207::tester::tester' is not a constant expression}} \