[w32file] Remove dead code
[mono.git] / mcs / errors / cs3003-7.cs
1 // CS3003: Type of `C._data' is not CLS-compliant
2 // Line: 11
3 // Compiler options: -unsafe -warnaserror -warn:1
4
5 using System;
6
7 [assembly: CLSCompliant (true)]
8
9 public class C
10 {
11         public unsafe byte* _data;
12         public unsafe byte* GetData () { return _data; }
13 }