Declaration order dependency for interfaces

Issue #194 resolved
Alfred Theorin created an issue

Interface attributes declared before the interface itself give errors:

aspect InterfaceOrder {
    syn int MyInterface.myValue1() = 10; // Error

    public interface MyInterface {
    }

    syn int MyInterface.myValue2() = 10; // OK
}

Used JastAdd version: 2.1.10

Comments (2)

  1. Log in to comment