linux-packaging-mono/mcs/tests/gtest-exmethod-25-lib.cs

16 lines
234 B
C#
Raw Normal View History

// Compiler options: -target:library
using System.Runtime.CompilerServices;
[assembly:InternalsVisibleTo ("gtest-exmethod-25")]
namespace lib1
{
static class Foo
{
internal static void Extend (this string aString)
{
}
}
}