11 lines
146 B
C#
11 lines
146 B
C#
|
// CS0133: The expression being assigned to `b' must be constant
|
||
|
// Line: 8
|
||
|
|
||
|
class X
|
||
|
{
|
||
|
static void Main ()
|
||
|
{
|
||
|
const int b = true ? 1 : b;
|
||
|
}
|
||
|
}
|