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-101.cs')
-rw-r--r--mcs/tests/test-101.cs39
1 files changed, 0 insertions, 39 deletions
diff --git a/mcs/tests/test-101.cs b/mcs/tests/test-101.cs
deleted file mode 100644
index c0256030fc0..00000000000
--- a/mcs/tests/test-101.cs
+++ /dev/null
@@ -1,39 +0,0 @@
-using System;
-using System.Reflection;
-
-namespace Test {
-
- public class MyAttribute: Attribute {
- public string val;
- public MyAttribute (string stuff) {
- System.Console.WriteLine (stuff);
- val = stuff;
- }
- }
-
- public class My2Attribute: MyAttribute {
- public int ival;
- public My2Attribute (string stuff, int blah) : base (stuff) {
- System.Console.WriteLine ("ctor with int val"+stuff);
- ival = blah;
- }
- }
-
- [My("testclass")]
- [My2("testclass", 22)]
- public class Test {
- static public int Main() {
- System.Reflection.MemberInfo info = typeof (Test);
- object[] attributes = info.GetCustomAttributes (false);
- for (int i = 0; i < attributes.Length; i ++) {
- System.Console.WriteLine(attributes[i]);
- }
- if (attributes.Length != 2)
- return 1;
- MyAttribute attr = (MyAttribute) attributes [0];
- if (attr.val != "testclass")
- return 2;
- return 0;
- }
- }
-}