Does Nemerle allow nested interfaces?
public interface IA {
interface IB { /* Compiles fine */
}
}
Then, why it is impossible to set its accessibilily?
public interface IA {
public interface IB { /* error : interface members are not allowed to
have any attributes specified, except 'new' */
}
}