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
Move Enum and CorElementType to shared (dotnet/coreclr#23177)
[mono-project.git]
/
mcs
/
tests
/
test-707.cs
blob
2f2df7b6a1f96a9864e021c47176a2e4c63aa977
1
using
System
;
2
3
class
Tzap
4
{
5
protected class
Baz
:
Tzap
.
Bar
6
{
7
8
public void
Gazonk
()
9
{
10
this
.
Foo
();
11
}
12
13
public static void
Main
()
14
{
15
}
16
}
17
18
protected abstract class
Bar
19
{
20
protected virtual void
Foo
()
21
{
22
}
23
}
24
}