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
/
cs0531.cs
blob
fbfeb32e22d5cb30d17c389c27707bf95265d67c
1
// CS0531: `Interface.Foo()': interface members cannot have a definition
2
// Line: 5
3
4
public interface
Interface
{
5
void
Foo
() {
6
}
7
}
8
9
10