Display error messages instead of stack traces.
[mcs.git] / errors / cs0647-13.cs
blob4fcc24286aa9cf7024c325601086d47a6cc1e3a7
1 // cs0647-13.cs: Error during emitting `System.Runtime.InteropServices.DllImportAttribute' attribute. The reason is `Argument cannot be null
2 // Line: 8
4 using System.Runtime.InteropServices;
5 using System;
7 class X {
8 [DllImport (null)]
9 extern static void Blah ();
11 static void Main (string [] args)