repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* MSBuild.cs (Execute): Don't share target output items,
[mcs.git]
/
errors
/
cs0120-13.cs
blob
0e3108bda6704df143c3cee14e5a03c4abba9b64
1
// CS0120: An object reference is required to access non-static member `C.Test(string)'
2
// Line: 8
3
4
class
C
5
{
6
static void
Test
(
int
i
)
7
{
8
Test
(
"a"
);
9
}
10
11
void
Test
(
string
s
)
12
{
13
}
14
}