Merge pull request #3565 from vargaz/no-free-imt-thunks
[mono.git] / mcs / errors / cs0246-2.cs
1 // CS0246: The type or namespace name `ErrorType' could not be found. Are you missing an assembly reference?
2 // Line: 5
3
4 interface A {
5         event ErrorType Test;
6 }