2019-04-12 14:10:50 +00:00
|
|
|
// Compiler options: -t:library -noconfig -r:gtest-431-1-lib.dll
|
2014-08-13 10:39:27 +01:00
|
|
|
|
|
|
|
using System;
|
|
|
|
|
|
|
|
namespace Library {
|
|
|
|
|
|
|
|
public class Foo {
|
|
|
|
}
|
|
|
|
|
|
|
|
public static class Extensions {
|
|
|
|
|
|
|
|
public static void Bar (this Foo self)
|
|
|
|
{
|
|
|
|
Console.WriteLine ("Bar");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|