1*e1fe3e4aSElliott Hughes# Three features. In the output, they should all point to the same lookup. 2*e1fe3e4aSElliott Hughes 3*e1fe3e4aSElliott Hugheslookup SomeLookup { 4*e1fe3e4aSElliott Hughes sub f f i by f_f_i; 5*e1fe3e4aSElliott Hughes sub f i by f_i; 6*e1fe3e4aSElliott Hughes} SomeLookup; 7*e1fe3e4aSElliott Hughes 8*e1fe3e4aSElliott Hughesfeature tst1 { 9*e1fe3e4aSElliott Hughes lookup SomeLookup; 10*e1fe3e4aSElliott Hughes} tst1; 11*e1fe3e4aSElliott Hughes 12*e1fe3e4aSElliott Hughesfeature tst2 { 13*e1fe3e4aSElliott Hughes lookup SomeLookup; 14*e1fe3e4aSElliott Hughes} tst2; 15*e1fe3e4aSElliott Hughes 16*e1fe3e4aSElliott Hughesfeature tst3 { 17*e1fe3e4aSElliott Hughes lookup EmbeddedLookup { 18*e1fe3e4aSElliott Hughes sub A by A.sc; 19*e1fe3e4aSElliott Hughes } EmbeddedLookup; 20*e1fe3e4aSElliott Hughes} tst3; 21*e1fe3e4aSElliott Hughes 22*e1fe3e4aSElliott Hughesfeature tst4 { 23*e1fe3e4aSElliott Hughes lookup EmbeddedLookup; 24*e1fe3e4aSElliott Hughes} tst4; 25