2010-04-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs3003-7.cs
blobff8f0441e0b2a0a1b7811c9bb9435883b3e8c5a0
1 // CS3003: Type of `C._data' is not CLS-compliant
2 // Line: 11
3 // Compiler options: -unsafe -warnaserror -warn:1
5 using System;
7 [assembly: CLSCompliant (true)]
9 public class C
11 public unsafe byte* _data;
12 public unsafe byte* GetData () { return _data; }