; RUN: firrtl -i %s -o %s.flo -x abcdefgh -p c | tee %s.out | FileCheck %s ;CHECK: Resolve Genders circuit top : module M : input i : UInt(10) output o : UInt(10) wire w : {x : UInt(10), flip y : UInt(10)} w.x := i w.y := i o := w.x o := w.y ; CHECK: Finished Resolve Genders