blob: bd3c8c7cd8335d024128ab76243e7386307ccd93 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// { dg-do compile }
// { dg-options "-fdump-tree-gimple-lineno" }
// Test that the TRY block's location is the definition of "C a".
class C {
public:
C() {}
~C() {}
int m() { return 0; }
};
int main() {
C a;
return a.m();
}
// { dg-final { scan-tree-dump-times "pr58123.C:13\.6\] try" 1 "gimple" } }
|