summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0420-2.cs
blob: d2ab81f5db2de1fa48ebba5e508b87e298b499bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// CS0420: `XX.j': A volatile field references will not be treated as volatile
// Line: 14
// Compiler options: -unsafe /warnaserror /warn:1

unsafe class XX {
	static volatile int j;

	static void X (ref int a)
	{
	}
	
	static void Main ()
	{
		X (ref j);
	}
}