File tree Expand file tree Collapse file tree
cpp/ql/test/library-tests/compiler_generated Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2121| cpp.cpp:19:26:19:44 | initializer for __PRETTY_FUNCTION__ | Initializer |
2222| cpp.cpp:19:26:19:44 | void uses_pretty_function() | Expr |
2323| cpp.cpp:20:1:20:1 | return ... | Stmt |
24+ | cpp.cpp:23:29:23:32 | args | Variable |
25+ | cpp.cpp:23:37:23:37 | return ... | Stmt |
26+ | cpp.cpp:23:37:23:37 | return ... | Stmt |
27+ | cpp.cpp:27:1:27:1 | return ... | Stmt |
2428| file://:0:0:0:0 | operator delete | Function |
2529| file://:0:0:0:0 | operator new | Function |
Original file line number Diff line number Diff line change @@ -17,4 +17,11 @@ void g1(void) {
1717
1818void uses_pretty_function () {
1919 const char * pretty = __PRETTY_FUNCTION__;
20+ }
21+
22+ template <typename ... Args>
23+ void parameter_pack (Args... args) { }
24+
25+ void test_parameter_pack () {
26+ parameter_pack ();
2027}
You can’t perform that action at this time.
0 commit comments