13 lines
147 B
C#
13 lines
147 B
C#
// CS0841: A local variable `v' cannot be used before it is declared
|
|
// Line: 9
|
|
|
|
|
|
public class Test
|
|
{
|
|
static void Main ()
|
|
{
|
|
var v = ++v;
|
|
}
|
|
}
|
|
|