xref: /Universal-ctags/Units/parser-cxx.r/new-delete.d/input.cpp (revision de2c958e1087216a3bd922534a91aa582ede0c32)
1 // Only fn() should be reported here.
fn()2 Class fn()
3 {
4 	delete x;
5 	delete[] x;
6 	new Class();
7 	(void)new Class();
8 	return new Class();
9 }