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
/
cs0134-2.cs
blob
8a0492f5d1e97e7353652f6d78d0a923c2758737
1
// CS0134: A constant `o' of reference type `object' can only be initialized with null
2
// Line: 8
3
4
public class
C
5
{
6
public static void
Main
()
7
{
8
const object
o
=
1
;
9
}
10
}