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
[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git]
/
mcs
/
errors
/
cs0117.cs
blob
dd5b345dfe85fe03d22d14b72da94c70fee965b0
1
// CS0117: `A' does not contain a definition for `Method'
2
// Line: 8
3
4
public class
E
:
A
5
{
6
void
Test
()
7
{
8
base
.
Method
();
9
}
10
}
11
12
static class
S
13
{
14
public static void
Method
(
this
A a
)
15
{
16
}
17
}
18
19
public class
A
20
{
21
}