[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs7003-5.cs
blob854fc97e4842d66d52151230a94cd72b2d35af7d
1 // CS7003: Unbound generic name is not valid in this context
2 // Line: 14
4 class A<T>
6 public class B
8 public int Foo;
12 class X
14 string s = nameof (A<>.B);