blob: c5861b515f685ef74165bff8ffa0918265c40f25 (
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 (Foo<int>);
}
}
|