| 152 | } |
| 153 | |
| 154 | int function() { |
| 155 | struct { |
| 156 | int m = 5; |
| 157 | int operator +( |
| 158 | int i) { |
| 159 | return i+m; |
| 160 | } |
| 161 | }foo; |
| 162 | |
| 163 | return foo |
| 164 | + //FIXME |
| 165 | foo.m; |
| 166 | } |
| 167 | |
| 168 | extern __typeof (function) function_alias1 __attribute__ ((weak, alias ("function"))); |
| 169 | extern __typeof (function) function_alias2 __attribute__ ((alias ("function"))); |
no outgoing calls
no test coverage detected