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
Take stars out of types where they make more sense.
[mono-project.git]
/
mcs
/
tests
/
gtest-433.cs
blob
80e1141213d52d17d76f1c8cd8633dc4be137438
1
// Compiler options: -r:gtest-433-lib.dll
2
3
using
C1
=
Blah
.
Class1
;
4
using
C2
=
Blah
.
Class2
;
5
using
Cit
=
Blah
.
Class2
.
Citrus
;
6
7
public class
M
8
{
9
public static void
Main
()
10
{
11
// access an internal type
12
C1 a
=
new
C1
();
13
a
.
Test
();
14
15
C2 b
=
new
C2
();
16
// access an internal member of a public type
17
b
.
Test
();
18
19
Cit
.
Lime
.
ToString
();
20
}
21
}