/ncc/testsuite/frommcs/gtest-129.n
http://github.com/xxVisorxx/nemerle · Unknown · 36 lines · 31 code · 5 blank · 0 comment · 0 complexity · a93003c69234d9526c91fd25ab23c194 MD5 · raw file
- namespace B
- {
- using C;
- partial class Test [T]
- where T : IA, IB
- { }
- }
- namespace B
- {
- partial class Test [T]
- where T : C.IB, C.IA
- { }
- }
- namespace B
- {
- partial class Test [T]
- { }
- }
- class X
- {
- static Main () : void
- { }
- }
- namespace C {
- interface IA { }
- interface IB { }
- }
- /*
- BEGIN-OUTPUT
- END-OUTPUT
- */