a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
17 lines
262 B
C#
17 lines
262 B
C#
// 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);
|
|
}
|
|
}
|