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/interfaces.cs')
-rwxr-xr-xmcs/tests/interfaces.cs22
1 files changed, 0 insertions, 22 deletions
diff --git a/mcs/tests/interfaces.cs b/mcs/tests/interfaces.cs
deleted file mode 100755
index 6fcd9ec3061..00000000000
--- a/mcs/tests/interfaces.cs
+++ /dev/null
@@ -1,22 +0,0 @@
-interface X {
-
- // Methods
- new int IntegerMethod (int a, int b);
- new int IntegerMethod (int a, string c);
- new int StringMethod ();
- int A (string b);
-
- // Properties
- new string TheString { get; set; }
- int TheInt { get; }
- int TheInt2 { set; }
- int TheInt3 { set; get; }
-
- // Events
- new event int MyEvent;
- event string MyEvent2;
-
- // Indexers
-}
-
-