It seems slice2html cannot handle forward declarations. The following slice compiles fine for C#, Java or C++, but slice2html returns "test.ice:7: `two' is not defined".
KarlCode:module test { interface two; //forward interface one { void do(); two* getTwo(); }; interface two { void do(); }; };

Reply With Quote
