11 lines
175 B
C#
11 lines
175 B
C#
|
// CS0134: A constant `o' of reference type `object' can only be initialized with null
|
||
|
// Line: 8
|
||
|
|
||
|
public class C
|
||
|
{
|
||
|
public static void Main ()
|
||
|
{
|
||
|
const object o = 1;
|
||
|
}
|
||
|
}
|