blob: 8a5b00425dd414f0469f7ab00392d92ad674f297 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// CS8084: An argument to nameof operator cannot be method group with type arguments
// Line: 12
static class C
{
static void Foo<T> ()
{
}
static void Main ()
{
string s = nameof (C.Foo<int>);
}
}
|