2004-04-22 Sebastien Pouliot <sebastien@ximian.com>
[mono.git] / mcs / tests / test-184.cs
index 8bb51b295456874e5ff0167d5920cd4051705533..d925d951ca1d0232281be4a5bc887424fd5b414a 100644 (file)
@@ -22,6 +22,12 @@ public class Test
 {
        User t;
        Test() { t=new User (new Struct(5)); }
+
+       //
+       // This one was not handled before by the compiler
+       // constrast that to the use on the constructor above, that
+       // worked just fine
+       //
        User t2=new User(new Struct(251));
 
        static int Main ()