linux-packaging-mono/mcs/tests/test-cls-02.cs
Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

36 lines
699 B
C#

using System;
using System.Reflection;
[assembly: CLSCompliant (true)]
public class CLSClass {
[CLSCompliant(false)]
public CLSClass(ulong l) {}
internal CLSClass(uint i) {}
[CLSCompliant(false)]
public ulong X_0 {
set {}
}
[CLSCompliant(false)]
protected ulong this[ulong i] {
set {}
}
[CLSCompliant(false)]
public ulong X_1;
internal ulong X_2;
public static void Main() {
}
}
public class InnerTypeClasss {
public struct Struct {
}
public Struct Method () {
return new Struct ();
}
}