Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRavi Pratap M <ravi@mono-cvs.ximian.com>2003-07-14 19:40:34 +0400
committerRavi Pratap M <ravi@mono-cvs.ximian.com>2003-07-14 19:40:34 +0400
commita24b2739ef59565c196b8bb7af18cd9fc18ee3aa (patch)
tree57a63594f5408e44c8b6c472ba4fe488caf6a8c4 /mcs/errors/cs1501-4.cs
parent629392ad0b003669997e290fd81548b818df1337 (diff)
Add this error test case
svn path=/trunk/mcs/; revision=16211
Diffstat (limited to 'mcs/errors/cs1501-4.cs')
-rw-r--r--mcs/errors/cs1501-4.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/mcs/errors/cs1501-4.cs b/mcs/errors/cs1501-4.cs
new file mode 100644
index 00000000000..8aad2eda01b
--- /dev/null
+++ b/mcs/errors/cs1501-4.cs
@@ -0,0 +1,12 @@
+// cs1501-4.cs : No overload for method `NUnit.Framework.IgnoreAttribute' takes `0' arguments
+// Line: 8
+
+using NUnit.Framework;
+
+class C
+{
+ [Ignore]
+ public void Method ()
+ {
+ }
+}