Archived

This forum has been archived. Please start a new discussion on GitHub.

csc compiler error amd inherit accross namespaces

hi,

csc reports an error on AMD callbacks for following ice definition:
module NameSpaceA
{
interface Base
{
["amd"] void Methode();
};
};

module NameSpaceB
{
interface Inherit extends NameSpaceA::Base
{
void Function();
};
};


please find simple demo project attached


cu tom

Comments