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:
Diffstat (limited to 'mcs/ilasm/errors/err-field-dup4.il')
-rw-r--r--mcs/ilasm/errors/err-field-dup4.il21
1 files changed, 21 insertions, 0 deletions
diff --git a/mcs/ilasm/errors/err-field-dup4.il b/mcs/ilasm/errors/err-field-dup4.il
new file mode 100644
index 00000000000..20855836c97
--- /dev/null
+++ b/mcs/ilasm/errors/err-field-dup4.il
@@ -0,0 +1,21 @@
+//Test for duplicate field names with
+//extern TypeRef (array)
+
+.assembly extern mscorlib
+{
+ .ver 1:0:5000:0
+}
+.assembly 'field-dup4'
+{
+ .ver 0:0:0:0
+}
+.module 'field-dup.exe'
+
+
+ .class private auto ansi beforefieldinit test
+ extends [mscorlib]System.Object
+ {
+ .field private class [mscorlib]System.Int32[] i
+ .field private class [mscorlib]System.Int32[] i
+ }
+