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/tests/test-71.cs')
-rwxr-xr-xmcs/tests/test-71.cs28
1 files changed, 0 insertions, 28 deletions
diff --git a/mcs/tests/test-71.cs b/mcs/tests/test-71.cs
deleted file mode 100755
index e7bd956c5f6..00000000000
--- a/mcs/tests/test-71.cs
+++ /dev/null
@@ -1,28 +0,0 @@
-//
-// struct with a constructor
-//
-using System;
-
-class X {
-
- static void Main ()
- {
- MethodSignature ms = new MethodSignature ("hello", null, null);
-
- Console.WriteLine ("About to look for: " + ms.Name);
- }
-}
-
- struct MethodSignature {
- public string Name;
- public Type RetType;
- public Type [] Parameters;
-
- public MethodSignature (string name, Type ret_type, Type [] parameters)
- {
- Name = name;
- RetType = ret_type;
- Parameters = parameters;
- }
- }
-