summaryrefslogtreecommitdiff
path: root/mcs/tests/gtest-431-lib-2.cs
blob: 7ab3d5009c99a30ca11611b7d6873bbeb0138352 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Compiler options: -t:library -noconfig -r:gtest-431-lib-1.dll

using System;

namespace Library {

	public class Foo {
	}

	public static class Extensions {

		public static void Bar (this Foo self)
		{
			Console.WriteLine ("Bar");
		}
	}
}