Merge pull request #3585 from lateralusX/jlorenss/win-counter-warning
[mono.git] / mcs / errors / cs0531.cs
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