blob: c599e128d1009a7c7ceea50d1b029a5e7d509f04 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// 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)
{
}
}
}
|