[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0101-2.cs
blob1f4b9179442c13cc81314d7ba45dcaf0fa3b35ae
1 // CS0101: The namespace `AA.VV' already contains a definition for `SomeEnum'
2 // Line: 10
3 using System;
5 namespace AA {
6 namespace VV {
7 public enum SomeEnum {
8 Something1,
9 Something2
12 public enum SomeEnum {
13 Dog,
14 Fish,
15 Cat