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: 58d4a050695e23159cb38aec880e86f3cb6376f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS0677: `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 ()
		{
		}
}