You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
behavior testale_behavior;
class Expression {
int a := 0;
}
open class ClassA {
@main
def void run() {
Expression.create().a.log();
}
}
The issue is that a class named Expression is also defined in Acceleo, and it is the one actually referenced here.
Opening a class Expression defined in the associated meta-model without its qualified name would also fail.
Ideally, the user's classes should have a higher priority when not using full qualified names.
The text was updated successfully, but these errors were encountered:
The following code fails:
The issue is that a class named
Expression
is also defined in Acceleo, and it is the one actually referenced here.Opening a class
Expression
defined in the associated meta-model without its qualified name would also fail.Ideally, the user's classes should have a higher priority when not using full qualified names.
The text was updated successfully, but these errors were encountered: