Update list to compile with mcs
[mono.git] / mcs / errors / cs0165-2.cs
1 class T {\r
2         void fun (ref int a)\r
3         {\r
4                 if (a == 3)\r
5                 a = 2;\r
6         }\r
7 \r
8         void x ()\r
9         {\r
10                 int x;\r
11 \r
12                 if (System.Console.Read () == 1)\r
13                         x = 1;\r
14                 fun (ref x);\r
15         }\r
16 }\r