Fixed.
authorMarek Safar <marek.safar@gmail.com>
Wed, 30 Jun 2010 14:51:01 +0000 (14:51 -0000)
committerMarek Safar <marek.safar@gmail.com>
Wed, 30 Jun 2010 14:51:01 +0000 (14:51 -0000)
svn path=/trunk/mcs/; revision=159733

1  2 
mcs/errors/cs0572-2.cs
mcs/errors/cs0582-2.cs

index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..f420cd9c8a75ff8f8c2504d0cfbca56be632a27d
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,0 +1,14 @@@
++// CS0572: `meth': cannot reference a type through an expression; try `test.meth' instead
++// Line: 8
++
++class test2 : test {
++      int meth( bool b )
++      {
++              return 1;
++              base.meth (true);
++      }
++}
++
++abstract class test {
++      public delegate void meth( bool b ) ;
++} 
diff --cc mcs/errors/cs0582-2.cs
index 23c9381773af3660fd36e0835b28ef138f2e53fd,23c9381773af3660fd36e0835b28ef138f2e53fd..0000000000000000000000000000000000000000
deleted file mode 100644,100644
+++ /dev/null
@@@ -1,14 -1,14 +1,0 @@@
--// cs0582.cs: meth: Can not reference a type through an expression, try `test.meth' instead
--// Line: 8
--
--class test2 : test {
--      int meth( bool b )
--      {
--              return 1;
--              base.meth (true);
--      }
--}
--
--abstract class test {
--      public delegate void meth( bool b ) ;
--}