summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.other/lineno3.C
blob: 2b3ba059f48bf5f1d27cb68deb28bfb916b02d03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// { dg-do assemble  }
// Bug: g++ gets confused by the #line directive within a method.
// Contributed by Mark Mitchell <mark@codesourcery.com>

struct S 
{
  void f () 
    {
      int i;
      
















      int j;
    }
};