| 169 | extern __typeof (function) function_alias2 __attribute__ ((alias ("function"))); |
| 170 | |
| 171 | std::string toString() { |
| 172 | function(); |
| 173 | function_alias1(); |
| 174 | function_alias2(); |
| 175 | MyClass c; |
| 176 | c.function(noDocumentationPlease(), !c.outofline(std::string("T")), MyEnum::Val1, toString()); |
| 177 | #define STRIGNIFY(X) #X |
| 178 | return STRIGNIFY(true && "hello \"world\"") |
| 179 | } |
| 180 | |
| 181 | int hasOwnProperty() { |
| 182 | function() |