a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
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;
|
|
}
|
|
}
|