13 lines
220 B
C#
13 lines
220 B
C#
|
// CS0201: Only assignment, call, increment, decrement, await, and new object expressions can be used as a statement
|
||
|
// Line: 8
|
||
|
|
||
|
class MainClass
|
||
|
{
|
||
|
public static void Main ()
|
||
|
{
|
||
|
for (int i = 0; i++; i < 8) {
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|