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
/
test-506.cs
blob
5bfa4aac3f7e7638a51eb332323995b27d080d86
1
using
System
;
2
3
namespace
ProtectedSetter
4
{
5
public abstract class
BaseClass
6
{
7
public abstract string
Name { get; internal set;}
8
}
9
10
public class
DerivedClass
:
BaseClass
11
{
12
13
public override
String Name
14
{
15
get
{
16
return null
;
17
}
18
internal set
{
19
}
20
}
21
22
public static void
Main
() {}
23
}
24
}