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
Make StringComparer.Create throw ArgumentNullException (#26570)
[mono-project.git]
/
mcs
/
errors
/
cs0747-2.cs
blob
0feae9d50a98a70fe59ffebaa44d8ef1d7642fab
1
// CS0747: Inconsistent `object initializer' member declaration
2
// Line: 16
3
4
5
using
System
;
6
using
System
.
Collections
;
7
8
class
Data
9
{
10
}
11
12
public class
Test
13
{
14
static void
Main
()
15
{
16
var
c
=
new
ArrayList { Count = 1, 1 }
;
17
}
18
}