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-132.cs')
-rwxr-xr-xmcs/tests/test-132.cs14
1 files changed, 0 insertions, 14 deletions
diff --git a/mcs/tests/test-132.cs b/mcs/tests/test-132.cs
deleted file mode 100755
index 0ac9a986ce4..00000000000
--- a/mcs/tests/test-132.cs
+++ /dev/null
@@ -1,14 +0,0 @@
-using System.Reflection;
-
-class T {
- protected internal string s;
- static int Main() {
- FieldInfo f = typeof(T).GetField ("s", BindingFlags.NonPublic|BindingFlags.Instance);
- if (f == null)
- return 2;
- FieldAttributes attrs = f.Attributes;
- if ((attrs & FieldAttributes.FieldAccessMask) != FieldAttributes.FamORAssem)
- return 1;
- return 0;
- }
-}