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
Merge pull request #15293 from lewing/wasm-clean
[mono-project.git]
/
mcs
/
tests
/
test-debug-02.cs
blob
67261a41deaad78772ebad7d0ce41eb43cba4df5
1
class
C
2
{
3
public
C
()
4
{
5
}
6
}
7
8
class
C1
9
{
10
int
a
=
55
;
11
}
12
13
class
C2
14
{
15
int
a
=
55
,
b
=
33
;
16
17
public
C2
()
18
{
19
}
20
}
21
22
class
C3
23
{
24
int
a
=
55
;
25
26
public
C3
()
27
:
base
()
28
{
29
}
30
}
31
32
class
C4
33
{
34
public
C4
()
35
:
this
(
1
)
36
{
37
}
38
39
C4
(
int
arg
)
40
{
41
}
42
}
43
44
class
Test
45
{
46
public static void
Main
()
47
{
48
}
49
}