[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs8084-2.cs
blob8a5b00425dd414f0469f7ab00392d92ad674f297
1 // CS8084: An argument to nameof operator cannot be method group with type arguments
2 // Line: 12
4 static class C
6 static void Foo<T> ()
10 static void Main ()
12 string s = nameof (C.Foo<int>);