language: C# (mono-2.8)
date: 463 days 5 hours ago
link:
visibility: public
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
using System;
 
public class Test
{
        public static void Main()
        {
                new A().t();
        }
}
 
    class A
    {
        int a = B.b + c;
        public static int c = 3;
        public void t()
        {
            Console.WriteLine("{0} {1} {2}", a, B.b, c);
        }
    }
    class B
    {
        public static int b = A.c+2;
    }