[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs1644-63.cs
blobce61d5ce046d8316b5d11acc66dc229092fe6408
1 // CS1644: Feature `extensible fixed statement' cannot be used because it is not part of the C# 7.2 language specification
2 // Line: 11
3 // Compiler options: -unsafe -langversion:7.2
5 using System;
7 unsafe class C
9 public static void Main ()
11 fixed (int* p = new Fixable ()) {
15 struct Fixable
17 public ref int GetPinnableReference ()
19 throw new NotImplementedException ();