[nem-en] Does Nemerle allow nested interfaces?

Vladimir Reshetnikov v.reshetnikov at gmail.com
Mon Jan 29 16:17:37 CET 2007


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' */
	}
}



More information about the devel-en mailing list