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-5.cs
blob
854fc97e4842d66d52151230a94cd72b2d35af7d
1
// CS7003: Unbound generic name is not valid in this context
2
// Line: 14
3
4
class
A
<
T
>
5
{
6
public class
B
7
{
8
public int
Foo
;
9
}
10
}
11
12
class
X
13
{
14
string
s
=
nameof
(
A
<>.
B
);
15
}