[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0431.cs
blobc75168f57fca3ab25fe1cf1fc4c09f0d95eb0651
1 // CS0431: Alias `foo' cannot be used with `::' since it denotes a type. Consider replacing `::' with `.'
2 // Line: 13
4 using foo = A;
6 class A {
7 public class B { }
10 class X {
11 static void Main ()
13 foo::B b = new A.B ();