repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
update
[mcs.git]
/
tests
/
gtest-278-2-lib.cs
blob
72e491333d88e58f204e66fb2fb9fd1ccddbcae3
1
// Compiler options: -t:library
2
3
using
System
;
4
5
public class
C
6
{
7
public class
CC
{}
8
9
public static string
Print
()
10
{
11
return typeof
(
C
).
FullName
;
12
}
13
}
14
15
public class
D
16
{
17
public static string
Print
()
18
{
19
return typeof
(
D
).
FullName
;
20
}
21
}