//expect:34 fn gen_tup(){ (5.0,(2.0, 8.0), 3.0) } fn dsp(){ let (a,(b1,b2),c) = gen_tup() a*b1 + b2*c }