New test
authorMarek Safar <marek.safar@gmail.com>
Thu, 20 May 2004 10:44:14 +0000 (10:44 -0000)
committerMarek Safar <marek.safar@gmail.com>
Thu, 20 May 2004 10:44:14 +0000 (10:44 -0000)
svn path=/trunk/mcs/; revision=27737

mcs/errors/CS0657-17-2.cs [deleted file]
mcs/errors/cs0657-17.cs
mcs/errors/cs0657-18.cs [new file with mode: 0644]

diff --git a/mcs/errors/CS0657-17-2.cs b/mcs/errors/CS0657-17-2.cs
deleted file mode 100644 (file)
index 1957c6a..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-using System;
-
-[method: CLSCompliant (false)]
index 57b64f80c91d4095b41b244cfc7eed5c8074fce0..2868adc1390a9ff650dd1d1479768c0c01540f34 100644 (file)
@@ -1,9 +1,4 @@
 // cs0657.cs : 'method' is not a valid attribute location for this declaration. Valid attribute locations for this declaration are 'assembly, module'
-// Line : 7
-// Compiler options: CS0657-17-2.cs
+// Line : 4
 
-using System;
-
-[assembly: CLSCompliant (false)]
-
-public class C {}
\ No newline at end of file
+[method: System.CLSCompliant (false)]
diff --git a/mcs/errors/cs0657-18.cs b/mcs/errors/cs0657-18.cs
new file mode 100644 (file)
index 0000000..a2602a3
--- /dev/null
@@ -0,0 +1,10 @@
+// cs0657.cs : 'assembly' is not a valid attribute location for this declaration. Valid attribute locations for this declaration are 'type'
+// Line : 9
+
+using System;
+
+[assembly: CLSCompliant (false)]
+public class C {}
+    
+[assembly: CLSCompliant (false)]
+public class D {}