summaryrefslogtreecommitdiffstats
path: root/tests/preprocessor/line.slang
blob: 7babcae8296037370d790219c7cc187e28579c24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//TEST:SIMPLE:
// #line support

FooA a() { return 0; }

#line 99 "b.slang"
FooB b() { return 0; }

#line default
FooC c() { return 0; }

#line 603 "d.slang"
FooD d() { return 0; }

#line 40
FooE e() { return 0; }

#line
FooF f() { return 0; }