Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gtest-547.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b745555cc3ba3d86cae406e34eb413e573a64407 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System;

public class Foo
{
	static void GenericLock<T> (T t) where T : class
	{
		lock (t)
		{
		}
	}
	
	public static void Main ()
	{
		GenericLock ("s");
	}
}