Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / tests / gtest-friend-14-lib.cs
1 // Compiler options: -t:library
2
3 using System.Collections.Generic;
4 using System.Runtime.CompilerServices;
5
6 [assembly: InternalsVisibleTo("gtest-friend-14")]
7
8 namespace N
9 {
10         internal class C
11         {
12                 internal struct S
13                 {
14                         public string sa;
15                         public string sb;
16                 }
17                 
18                 internal static void Init (IList<C.S> arg)
19                 {
20                 }
21         }
22 }