2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs1510-3.cs
blob7bd6460a3b6cfee117d071a4fba587f5045082e0
1 // cs1510-3.cs: A ref or out argument must be an assignable variable
2 // Line: 19
3 // this is bug #70402
5 using System;
7 class T {
9 enum A { a, b }
11 static void Convert (out A a)
13 a = A.a;
16 static void Main ()
18 int a = 0;
19 Convert (out (A) a);