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
2007-03-09 Chris Toshok <toshok@ximian.com>
[mcs.git]
/
errors
/
cs0134-2.cs
blob
9a88ae86b906af1af14195b04ffc80f375c8c66d
1
// cs0134.cs: `o': the constant of reference type other than string can only be initialized with null
2
// Line: 6
3
4
public class
C
5
{
6
public static void
Main
()
7
{
8
const object
o
=
1
;
9
}
10
}