repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
resync
[mcs.git]
/
errors
/
gcs0131.cs
blob
80a891516768b698a77b3862dc37d31d65ec602f
1
// CS0131: The left-hand side of an assignment must be a variable, a property or an indexer
2
// Line: 13
3
using
System
;
4
5
public class
Foo
<
T
>
6
{
7
}
8
9
class
X
10
{
11
static void
Main
()
12
{
13
Foo
<
X
> =
new
Foo
<
X
> ();
14
}
15
}