Merge pull request #5439 from alexrp/master
[mono.git] / mcs / tests / dtest-friend-01-lib.cs
1 // Compiler options: -t:library
2
3 using System.Runtime.CompilerServices;
4
5 [assembly: InternalsVisibleTo("dtest-friend-01")]
6
7 public class A
8 {
9         internal void Test ()
10         {
11         }
12 }