eclipse-archived/ceylon

nested class alias for String crashes compiler

Opened this issue · 0 comments

This code crashes the Java backend:

shared class MemberAlias() {
    shared class Str({Character*} characters) => String(characters);
    shared void show(Str string) {}
}

The same code with a regular alias is fine.