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
2010-04-15 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
gcs1914.cs
blob
dbbc46af9c4084f8519e1a651e122f276c6f700e
1
// CS1914: Static field or property `Data.Count' cannot be assigned in an object initializer
2
// Line: 17
3
4
5
using
System
;
6
using
System
.
Collections
.
Generic
;
7
8
class
Data
9
{
10
public static int
Count
;
11
}
12
13
public class
Test
14
{
15
static void
Main
()
16
{
17
var
c
=
new
Data { Count = 10 }
;
18
}
19
}