2005-04-12 Dick Porter <dick@ximian.com>
[mono.git] / mcs / errors / cs0647-11.cs
1 // cs0647.cs: Error emitting 'MarshalAs' attribute because 'SizeParamIndex field is not valid for the specified unmanaged type'
2 // Line: 10
3
4 using System;
5 using System.Runtime.InteropServices;
6
7 public class main {
8
9     [DllImport("libname", EntryPoint = "scumbag")]
10     static extern int scumbag(ref int X, [MarshalAs(UnmanagedType.ByValArray)] ref byte[] fb);
11 }