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-102.cs')
-rw-r--r--mcs/tests/test-102.cs35
1 files changed, 0 insertions, 35 deletions
diff --git a/mcs/tests/test-102.cs b/mcs/tests/test-102.cs
deleted file mode 100644
index 39f018c1378..00000000000
--- a/mcs/tests/test-102.cs
+++ /dev/null
@@ -1,35 +0,0 @@
-using System;
-using System.Reflection;
-
-[assembly: AssemblyTitle ("Foo")]
-[assembly: AssemblyVersion ("1.0.2")]
-
-namespace N1 {
-
- [AttributeUsage (AttributeTargets.All)]
- public class MineAttribute : Attribute {
-
- string name;
-
- public MineAttribute (string s)
- {
- name = s;
- }
- }
-
- interface A {
- [Mine ("hello")]
- void Hello ();
- }
-
- public class Foo {
-
- int i;
-
- [Mine ("Foo")]
- public static int Main ()
- {
- return 0;
- }
- }
-}