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

cs0185.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6efb95560a6a6cc3e12b7ec12c195b4cef1ab32a (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs0185.cs: object is not a reference type (as expected by lock)
// Line:

class X {
	static void Main ()
	{
		lock (5) {
		}
	}
}