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-61.cs')
-rwxr-xr-xmcs/tests/test-61.cs39
1 files changed, 0 insertions, 39 deletions
diff --git a/mcs/tests/test-61.cs b/mcs/tests/test-61.cs
deleted file mode 100755
index 9d8c8532b0f..00000000000
--- a/mcs/tests/test-61.cs
+++ /dev/null
@@ -1,39 +0,0 @@
-//
-// This tests checks that we allow the `get' and `set' keywords inside
-// the get and set blocks. It does the same for Events special remove
-// and add keywords.
-//
-class X {
- int Property {
- get {
- int get;
- get = 1;
- return get;
- }
- set {
- int set;
- set = value;
- }
- }
-
- int P2 {
- get { return 0; }
- }
-
- int P3 {
- set { }
- }
-
- public delegate void MyEvent ();
-
- public event MyEvent XX {
- add { int add = 1; }
- remove { int remove = 1; }
- }
-
- static int Main ()
- {
- return 0;
- }
-}
-