Updates
authorMarek Safar <marek.safar@gmail.com>
Wed, 8 Oct 2008 11:15:28 +0000 (11:15 -0000)
committerMarek Safar <marek.safar@gmail.com>
Wed, 8 Oct 2008 11:15:28 +0000 (11:15 -0000)
svn path=/trunk/mcs/; revision=115196

1  2 
mcs/errors/cs0071-3.cs
mcs/errors/gcs0081-4.cs
mcs/errors/gcs1002-2.cs
mcs/errors/gcs1002.cs
mcs/errors/gcs1031.cs

index f8194665989112533bda23c4434009ce80003bc7,f8194665989112533bda23c4434009ce80003bc7..721952b1e42833a1f7cfa7d7b4b22b3f5b1ada0b
@@@ -1,15 -1,15 +1,17 @@@
--// cs0071-3.cs: An explicit interface implementation of an event must use property syntax
--// Line: 12
++// CS0071: `Test.IBlah.Foo': An explicit interface implementation of an event must use property syntax
++// Line: 14
  
  using System;
  
++delegate void Delegate ();
++
  interface IBlah
  {
        event Delegate Foo;
  }
  
  class Test : IBlah {
--      event MyEvent ITest.Foo;
++      event Delegate IBlah.Foo;
  
        public static void Main ()
        {
diff --cc mcs/errors/gcs0081-4.cs
index a2783b99263855a01190bad5d78ded853c465ba4,a2783b99263855a01190bad5d78ded853c465ba4..0000000000000000000000000000000000000000
deleted file mode 100644,100644
+++ /dev/null
@@@ -1,12 -1,12 +1,0 @@@
--// gcs0081.cs: Type parameter declaration must be an identifier not a type
--// Line: 4
--
--interface IFoo<T>
--{
--}
--
--public class Bar {
--      public void GetItemCommand<IFoo<int>>()
--      {
--      }
--}
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..11d59fa50fd1d49b8aac064fbb8a59cfe59904d3
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,0 +1,12 @@@
++// CS1002: Expecting `,', or `>', got <
++// Line: 9
++
++interface IFoo<T>
++{
++}
++
++public class Bar {
++      public void GetItemCommand<IFoo<int>>()
++      {
++      }
++}
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..b9758a41ce001c8e41edd3ef6f38e7afa0f4612b
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,0 +1,6 @@@
++// CS1002: Expecting `[', or `identifier', got >
++// Line: 4
++
++public class C<>
++{
++}
diff --cc mcs/errors/gcs1031.cs
index a9ea22dea44cc97d21d325d2329528e4d42f982d,a9ea22dea44cc97d21d325d2329528e4d42f982d..0000000000000000000000000000000000000000
deleted file mode 100644,100644
+++ /dev/null
@@@ -1,6 -1,6 +1,0 @@@
--// CS1031: Type expected
--// Line: 4
--
--public class C<>
--{
--}