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: 822724a9b53603eb8e218edf9ad77bc41356725f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs0677.cs: X.a volatile field can not be of type "A"
// Line: 8
using System;

struct A { int a; }

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