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
/
test-605.cs
blob
600695d6233e013bfc976648b98b50506a9c6b68
1
class
TestA
2
{
3
public virtual string
Method
4
{
5
get
{ return null; }
6
}
7
}
8
9
class
TestB
:
TestA
10
{
11
private string
Method
12
{
13
get
{ return null; }
14
}
15
16
public static void
Main
()
17
{
18
}
19
}