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:
authorMarek Safar <marek.safar@gmail.com>2010-10-29 14:55:12 +0400
committerMarek Safar <marek.safar@gmail.com>2010-10-29 14:56:05 +0400
commitbeb87ce1ea03f43540bd9025ee5fd5e0af53983e (patch)
treeba29eb1f7bd6d1aaa4d2ca1c21ac571e5819daf1 /mcs/tests/test-792-lib.il
parentc10b6198caa2bd38198a5e5951512feea20cad23 (diff)
Ignore private methods in batch import
Diffstat (limited to 'mcs/tests/test-792-lib.il')
-rw-r--r--mcs/tests/test-792-lib.il13
1 files changed, 12 insertions, 1 deletions
diff --git a/mcs/tests/test-792-lib.il b/mcs/tests/test-792-lib.il
index e3addb8c0c8..327450309b3 100644
--- a/mcs/tests/test-792-lib.il
+++ b/mcs/tests/test-792-lib.il
@@ -40,11 +40,16 @@
.method public hidebysig specialname rtspecialname
instance void .ctor() cil managed
{
- .maxstack 8
IL_0000: ldarg.0
IL_0001: call instance void [mscorlib]System.Object::.ctor()
IL_0006: ret
}
+
+ .method private hidebysig specialname
+ instance void PrivateMissing(['missing-lib']XX p) cil managed
+ {
+ IL_0000: ret
+ }
}
.class public auto ansi beforefieldinit MultipleSameNames extends [mscorlib]System.Object
@@ -118,5 +123,11 @@
Working() cil managed
{
}
+
+ .method public hidebysig newslot abstract virtual
+ instance class [mscorlib]System.Object[]
+ Working(class G`1<class MembersDelayed> arg) cil managed
+ {
+ }
}