2005-06-16 Sebastien Pouliot <sebastien@ximian.com>
[mono.git] / mcs / errors / cs0531.cs
1 // cs0531.cs: 'Interface.Foo()' : interface members cannot have a definition
2 // Line: 5
3
4 public interface Interface {
5         void Foo () {
6         }
7 }
8
9
10