repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[interp] Fall back to old implementation when calling on proxy
[mono-project.git]
/
mcs
/
tests
/
test-debug-05.cs
blob
836fb4824e590eb4694a95b4f0e08b648a0f1825
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
}