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
/
cs0120-16.cs
blob
c88ea34520e0ed798d3494e99859ef6d2503b7c5
1
// CS0120: An object reference is required to access non-static member `App.Test'
2
// Line: 15
3
4
class
App
5
{
6
Test a
=
new
Test
();
7
8
public
Test Test
9
{
10
get
{ return a; }
11
}
12
13
public static void
Main
(
string
[]
args
)
14
{
15
Test
.
Run
();
16
}
17
}
18
19
class
Test
20
{
21
public void
Run
()
{ }
22
}