repo.or.cz
/
mono-project
/
dkf.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2009-02-10 Jeffrey Stedfast <fejj@novell.com>
[mono-project/dkf.git]
/
mcs
/
tests
/
test-506.cs
blob
640c24d9755b6b23cb0418eb8276972756a55694
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
static void
Main
() {}
23
}
24
}