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

using System;

namespace Testy
{
	public static class TestExtensions
	{
		public static string MyFormat (this Object junk,
						  string fmt, params object [] args)
		{
			return String.Format (fmt, args);
		}
	}
}