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
[bcl] Update BCL Linked Size
[mono-project.git]
/
mcs
/
errors
/
cs0118-15.cs
blob
02efe523eeff74764de5bf9609dce761c9623eb9
1
// CS0118: `Foo<X>' is a `type' but a `variable' was expected
2
// Line: 12
3
4
public class
Foo
<
T
>
5
{
6
}
7
8
class
X
9
{
10
static void
Main
()
11
{
12
Foo
<
X
> =
new
Foo
<
X
> ();
13
}
14
}