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

cs3026.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e0e83c3d38a91de90ed040eb4673b092dab37728 (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs3026.cs: CLS-compliant field 'Class.V' cannot be volatile
// Line: 9
// Compiler options: -warn:1 -warnaserror

using System;
[assembly: CLSCompliant (true)]

public class Class {
	protected volatile int V;
	static void Main () {}
}