linux-packaging-mono/mcs/tests/gtest-friend-13.cs

26 lines
309 B
C#
Raw Normal View History

// Compiler options: -r:gtest-friend-13-lib.dll
using System;
public class B : FriendClass
{
protected internal override void Test ()
{
}
internal override void Test_2 ()
{
new FriendClass().Test ();
}
}
public class Test
{
public static void Main ()
{
var b = new B ();
b.Test_2 ();
}
}