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:
authorMartin Baulig <martin@novell.com>2004-06-13 06:21:43 +0400
committerMartin Baulig <martin@novell.com>2004-06-13 06:21:43 +0400
commit627e504e3acd62f71f59bbd551e31eeefefe6461 (patch)
tree50d0a739e8ec951686ca04e7c2ef16ff05259920 /mcs/errors/gcs0404.cs
parentbbc0c79f0e5f96eff0f75d224968e42755c8190b (diff)
New test.
svn path=/trunk/mcs/; revision=29436
Diffstat (limited to 'mcs/errors/gcs0404.cs')
-rw-r--r--mcs/errors/gcs0404.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/mcs/errors/gcs0404.cs b/mcs/errors/gcs0404.cs
new file mode 100644
index 00000000000..4b935d369b0
--- /dev/null
+++ b/mcs/errors/gcs0404.cs
@@ -0,0 +1,8 @@
+// CS0404: '<' unexpected: attributes cannot be generic
+// Line: 3
+[Test<T>]
+class X
+{
+ static void Main ()
+ { }
+}