1// { dg-do assemble  }
2// Bug: g++ gets confused by the #line directive within a method.
3// Contributed by Mark Mitchell <mark@codesourcery.com>
4
5struct S
6{
7  void f ()
8    {
9      int i;
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27      int j;
28    }
29};
30