[mcs] C#7 throw expression
[mono.git] / mcs / errors / cs1964.cs
1 // CS1964: User-defined conversion `C.implicit operator C(dynamic)' cannot convert to or from the dynamic type
2 // Line: 6
3
4 class C
5 {
6         public static implicit operator C (dynamic d)
7         {
8         }
9 }