2010-04-07 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs1742-2.cs
blob203daf348277714bec65667c123f08af019d3417
1 // CS1742: An element access expression cannot use named argument
2 // Line: 13
3 // Compiler options: -unsafe -langversion:future
5 using System;
7 unsafe class C
9 static void Main ()
11 int *p = null;
13 if (p [value:10] == 4)
14 return;