Merge all static runtime libs into libmono-static.
[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