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
/
gtest-355.cs
blob
adf87bb71bec2e2fab64eb287101b9c4b2a81e27
1
class
A
2
{
3
public virtual bool
Foo
(
string
s
)
4
{
5
return true
;
6
}
7
8
public virtual string
Foo
<
T
> (
string
s
)
9
{
10
return
"v"
;
11
}
12
}
13
14
class
B
:
A
15
{
16
public bool
Goo
(
string
s
)
17
{
18
return
Foo
(
s
);
19
}
20
21
public override bool
Foo
(
string
s
)
22
{
23
return false
;
24
}
25
26
public override string
Foo
<
T
> (
string
s
)
27
{
28
return
"a"
;
29
}
30
}
31
32
33
class
C
34
{
35
public static void
Main
()
36
{
37
}
38
}