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
2009-02-27 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
gcs0833.cs
blob
e678ab45e5362f5f0305f75aa06de05fc8adea5f
1
// CS0833: `Value': An anonymous type cannot have multiple properties with the same name
2
// Line: 9
3
4
5
public class
Test
6
{
7
static void
Main
()
8
{
9
var
v1
=
new
{ Value = 1, Value = 0 }
;
10
}
11
}