[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0019-13.cs
blob089c5c608926af2b059a885a0a9d5b620bb42471
1 // CS0019: Operator `>>' cannot be applied to operands of type `E' and `int'
2 // Line : 10
4 enum E: byte {
5 Min
8 class T {
9 static void Main () {
10 E error = E.Min >> 2;