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
Merge pull request #4926 from BrzVlad/fix-tls-v5
[mono-project.git]
/
mcs
/
errors
/
cs7003-8.cs
blob
04d8b2c57d5a6af7327ed6fc455ddad609704f55
1
// CS7003: Unbound generic name is not valid in this context
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
(
C
.
Foo
<>);
13
}
14
}