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

cs0677.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 93429fabd2cd1d257a5e3640a5d138bcebcc6fc0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs0677.cs: `X.a': A volatile field cannot be of the type `A'
// Line: 8
using System;

struct A { int a; }

class X {
	public volatile A a;
	static void Main ()
		{
		}
}