reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
1 2 3 4 5 6 7 8 9 10 | struct Foo { // Triggers that we emit an artificial constructor for Foo. virtual ~Foo() = default; }; int main() { Foo f; // Try to construct foo in our expression. return 0; //%self.expect("expr Foo()", substrs=["(Foo) $0 = {}"]) } |