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: 62dd9706267d5c2ecaa624ae7cb9da7133c45f4b (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs0185.cs: `int' is not a reference type as required by the lock statement
// Line:

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