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-12-07 02:10:51 +0300
committerMartin Baulig <martin@novell.com>2004-12-07 02:10:51 +0300
commita1c084698bb2755216dfc459f0c779ee62203e2f (patch)
tree54012b1d75300b73b61150c4369b89423cf2388b /mcs/errors/gcs0246-4.cs
parent1286ebbce55ef0ce3371902c2c0d0034fcb6f987 (diff)
parent575ddc9e17b505fcd9fd3fc4fc9aec446d997fa9 (diff)
2004-12-07 Martin Baulig <martin@ximian.com>
* gcs0305.cs: Renamed to cs0246-2.cs. * gcs0305-2.cs: Renamed to cs0246-3.cs. * gcs0305-3.cs: Renamed to cs0246-4.cs. * gcs0305-4.cs: Renamed to cs0246-5.cs. * gcs0308.cs: Renamed to cs0246-6.cs. * gcs0308-2.cs: Renamed to cs0246-7.cs. * gcs0308-3.cs: Renamed to cs0246-8.cs. svn path=/trunk/mcs/; revision=37252
Diffstat (limited to 'mcs/errors/gcs0246-4.cs')
-rw-r--r--mcs/errors/gcs0246-4.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/mcs/errors/gcs0246-4.cs b/mcs/errors/gcs0246-4.cs
new file mode 100644
index 00000000000..60a79337f92
--- /dev/null
+++ b/mcs/errors/gcs0246-4.cs
@@ -0,0 +1,20 @@
+// CS0305: Using the generic type `N1.A<T>' requires 1 type arguments
+// Line: 12
+namespace N1
+{
+ class A<T>
+ {
+ }
+}
+
+namespace N3
+{
+ using W = N1.A;
+
+ class X
+ {
+ static void Main ()
+ {
+ }
+ }
+}