module ImportChain3 where

import ImportChain2

f3 :: a -> A1 
f3 x = f2 x   

a3 = A1     

r3 = R2 { sel = 3; sel2 = 4} 


