0 / 60 seg.

What is wrong with this code?

void MyFunction()
{
    {
        int a = 10;
        int b = 20;
        int c = a + b;
    }
    Console.WriteLine(c);
}