You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
396 B
25 lines
396 B
# Three features. In the output, they should all point to the same lookup.
|
|
|
|
lookup SomeLookup {
|
|
sub f f i by f_f_i;
|
|
sub f i by f_i;
|
|
} SomeLookup;
|
|
|
|
feature tst1 {
|
|
lookup SomeLookup;
|
|
} tst1;
|
|
|
|
feature tst2 {
|
|
lookup SomeLookup;
|
|
} tst2;
|
|
|
|
feature tst3 {
|
|
lookup EmbeddedLookup {
|
|
sub A by A.sc;
|
|
} EmbeddedLookup;
|
|
} tst3;
|
|
|
|
feature tst4 {
|
|
lookup EmbeddedLookup;
|
|
} tst4;
|