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
2010-05-13 Rodrigo Kumpera <rkumpera@novell.com>
[mono-project.git]
/
mcs
/
tests
/
gtest-friend-08.cs
blob
7bebf34575b734e6dad2ed9c43c06eb3aae1b779
1
// Compiler options: -r:gtest-friend-01-lib.dll
2
using
System
;
3
4
public class
Test
5
{
6
static void
Main
()
7
{
8
// We should be able to access them
9
new
InternalFriendClass
();
10
new
FriendClass
.
NestedInternalClass
();
11
new
FriendClass
.
NestedProtectedInternalClass
();
12
}
13
}
14