* ResXResourceReader.cs (load_data): Make exception more informative.
[mono.git] / mcs / errors / cs0531.cs
1 // cs0531.cs: 'Interface.Foo()' : interface members cannot have a definition\r
2 // Line: 5\r
3 \r
4 public interface Interface {\r
5         void Foo () {\r
6         }\r
7 }\r
8 \r
9 \r
10 \r