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/tests/one.cs')
-rw-r--r--mcs/ilasm/tests/one.cs39
1 files changed, 39 insertions, 0 deletions
diff --git a/mcs/ilasm/tests/one.cs b/mcs/ilasm/tests/one.cs
new file mode 100644
index 00000000000..e0037294fd4
--- /dev/null
+++ b/mcs/ilasm/tests/one.cs
@@ -0,0 +1,39 @@
+public class outer {
+ public class inner {
+ }
+}
+
+public class gen <T> {
+ public static void foo ()
+ {
+ }
+}
+
+namespace ns {
+ public class gen_m <T> {
+ public static void foo ()
+ {
+ }
+ public static void foo <A> (A _a)
+ {
+ }
+ public static void foo <A, B> (A _a)
+ {
+ }
+ }
+}
+
+public interface If1 <T> {
+}
+
+public interface If2 <T> {
+}
+
+public interface If3 {
+}
+
+public struct gen_struct <T> {
+ public static void foo ()
+ {
+ }
+}