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
Merge pull request #1821 from iainx/replace-getline
[mono-project.git]
/
mcs
/
errors
/
cs1061-3.cs
blob
9c2f1285a243578c7c9be69993f2772b586a714b
1
// CS1061: Type `object' does not contain a definition for `Test' and no extension method `Test' of type `object' could be found. Are you missing an assembly reference?
2
// Line: 17
3
4
public class
S
5
{
6
public static void
Test
()
7
{
8
}
9
}
10
11
public class
M
12
{
13
public object
S { get; set; }
14
15
public void
Main
()
16
{
17
S
.
Test
();
18
}
19
}