a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
38 lines
447 B
C#
38 lines
447 B
C#
// Compiler options: -warnaserror
|
|
|
|
using System;
|
|
|
|
[assembly: CLSCompliant (true)]
|
|
|
|
public class CLSClass
|
|
{
|
|
public byte XX {
|
|
get { return 5; }
|
|
}
|
|
|
|
public static void Main() {}
|
|
}
|
|
|
|
|
|
public class Big
|
|
{
|
|
[CLSCompliant (false)]
|
|
public static implicit operator Big (uint value)
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
[CLSCompliant (false)]
|
|
public partial class C1
|
|
{
|
|
}
|
|
|
|
public partial class C1
|
|
{
|
|
public void method (uint u)
|
|
{
|
|
}
|
|
}
|
|
|