repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git]
/
mcs
/
errors
/
cs8084.cs
blob
c5861b515f685ef74165bff8ffa0918265c40f25
1
// CS8084: An argument to nameof operator cannot be method group with type arguments
2
// Line: 12
3
4
static class
C
5
{
6
static void
Foo
<
T
> ()
7
{
8
}
9
10
static void
Main
()
11
{
12
string
s
=
nameof
(
Foo
<
int
>);
13
}
14
}