[runtime] Don't insta-fail when a faulty COM type is encountered. (#5616)
[mono.git] / mcs / tests / gtest-580.cs
1 // Parser tests for contextual where 
2
3 namespace WhereProblems
4 {
5         class MyClass<where> { }
6         interface MyInterface<where> { }
7         struct MyStruct<where> { }
8
9         class Classes
10         {
11                 class where { }
12                 class DER17 : where { }
13
14                 public static void Main ()
15                 {
16                 }
17         }
18 }