2005-06-05 Ben Maurer <bmaurer@ximian.com>
[mono.git] / mcs / errors / cs3003-3.cs
1 // CS3003: Type of 'I.Error' is not CLS-compliant
2 // Line: 8
3
4 using System;
5 [assembly:CLSCompliant(true)]
6
7 public interface I {
8         UIntPtr Error { get; }
9 }