summaryrefslogtreecommitdiff
path: root/mcs/tests/gtest-friend-13-lib.cs
blob: 4e68d0fe0a7c615336fec98d30bda8c17180a95d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Compiler options: -t:library
using System;
using System.Runtime.CompilerServices;

[assembly: InternalsVisibleTo ("gtest-friend-13")]

public class FriendClass
{
	protected internal virtual void Test ()
	{
	}
	
	internal virtual void Test_2 ()
	{
	}
}