linux-packaging-mono/mcs/tests/test-debug-05.cs
Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

35 lines
386 B
C#

class C
{
public static void Main ()
{
int a = 2;
#line 100 "mising-file"
int b = 2;
#line default
}
void Hidden ()
{
#line hidden
int x = 9;
#line default // comment testing
const int o = 2;
#line hidden
x = 9;
#line hidden
int x2 = 3;
#line 55
int h = 7;
}
void HiddenRecurse ()
{
string s1 = "a";
#line hidden
string s2 = "bb";
#line 29
return;
}
}