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
[tuner] handle the case with multiple "preserve" attributes
[mono-project.git]
/
mcs
/
tests
/
gtest-friend-13-lib.cs
blob
4e68d0fe0a7c615336fec98d30bda8c17180a95d
1
// Compiler options: -t:library
2
using
System
;
3
using
System
.
Runtime
.
CompilerServices
;
4
5
[
assembly
:
InternalsVisibleTo
(
"gtest-friend-13"
)]
6
7
public class
FriendClass
8
{
9
protected internal virtual void
Test
()
10
{
11
}
12
13
internal virtual void
Test_2
()
14
{
15
}
16
}
17