Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / tests / test-debug-05.cs
1 class C
2 {
3         public static void Main ()
4         {
5                 int a = 2;
6 #line 100 "mising-file"
7                 int b = 2;
8 #line default
9         }
10         
11         void Hidden ()
12         {
13 #line hidden
14                 int x = 9;
15 #line default // comment testing
16                 const int o = 2;
17
18 #line hidden
19                 x = 9;
20 #line hidden
21                 int x2 = 3;
22 #line 55
23                 int h = 7;
24         }
25         
26         void HiddenRecurse ()
27         {
28                 string s1 = "a";
29 #line hidden
30                 string s2 = "bb";
31 #line 29
32                 return;
33         }
34 }