Merge pull request #3769 from evincarofautumn/fix-verify-before-allocs
[mono.git] / mcs / errors / cs0246.cs
1 // CS0246: The type or namespace name `B' could not be found. Are you missing an assembly reference?
2 // Line: 4
3 interface A : B {
4 }
5
6 class X {
7         static void Main () {
8         }
9 }
10