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:
authorMarek Safar <marek.safar@gmail.com>2007-11-22 20:21:44 +0300
committerMarek Safar <marek.safar@gmail.com>2007-11-22 20:21:44 +0300
commitcaa6501cbd2e5eb49565841c6d7010991faf341c (patch)
tree52078f47c83e0ac74a0b84f515384cd02a2cd933 /mcs/tests/gtest-friend-13-lib.cs
parent5a1efcaa0dd9fa328431f414a71e8a7ab9cfa585 (diff)
2007-11-22 Marek Safar <marek.safar@gmail.com>
A test for bug #334505 svn path=/trunk/mcs/; revision=90171
Diffstat (limited to 'mcs/tests/gtest-friend-13-lib.cs')
-rw-r--r--mcs/tests/gtest-friend-13-lib.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/mcs/tests/gtest-friend-13-lib.cs b/mcs/tests/gtest-friend-13-lib.cs
new file mode 100644
index 00000000000..df43d2f734e
--- /dev/null
+++ b/mcs/tests/gtest-friend-13-lib.cs
@@ -0,0 +1,13 @@
+// Compiler options: -t:library
+using System;
+using System.Runtime.CompilerServices;
+
+[assembly: InternalsVisibleTo ("gtest-friend-13")]
+
+public class FriendClass
+{
+ protected internal virtual void Test ()
+ {
+ }
+}
+