/ncc/testsuite/frommcs/test-478.n
http://github.com/xxVisorxx/nemerle · Unknown · 35 lines · 28 code · 7 blank · 0 comment · 0 complexity · 9d09da54ff4c8eb5546736b8ba15beee MD5 · raw file
- using System;
- using System.ComponentModel;
- using System.ComponentModel.Design;
- namespace Test {
- class MainClass {
- public static Main() : void {}
- }
- [Test(TestEnum2.TestValue)]
- enum TestEnum {
- | Value
- }
- class TestAttribute : Attribute {
- public this(_ : TestEnum2 ) {
- }
- }
-
- class Test2Attribute : Attribute {
- }
-
- enum TestEnum2 {
- [Test2]
- | TestValue
- }
- }
- /*
- #600
- NO-TEST
- BEGIN-OUTPUT
- END-OUTPUT
- */