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
[metadata] Use MONO_PROFILER_API on MonoClass getters in checked builds (#20440)
[mono-project.git]
/
mcs
/
errors
/
cs0120.cs
blob
c11560612ee7db8f15ea594ca57cb4727ef2d513
1
// CS0120: An object reference is required to access non-static member `test.method()'
2
// Line: 11
3
4
class
test
{
5
6
void
method
()
7
{
8
}
9
10
public static int
Main
(
string
[]
args
){
11
method
();
12
return
1
;
13
}
14
}