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-10-22 Marek Safar <marek.safar@gmail.com>
[mcs.git]
/
errors
/
cs0134-3.cs
blob
351c14a9fe5af49157376a6708a05a6430ae867e
1
// CS0134: A constant `C.b' of reference type `bool[]' can only be initialized with null
2
// Line: 6
3
4
class
C
5
{
6
const bool
[]
b
=
{ true }
;
7
}