blob: 0760f168ee7294a69d815a2fe7cc203e627b2a16 (
plain)
1
2
3
4
5
6
7
8
|
; RUN: firrtl -i %s -o %s.flo -x X -p c | tee %s.out | FileCheck %s
; CHECK: FIRRTL Parsing Error: Expected a statement here.
circuit Top :
module Top :
wire x : UInt<1>
inst t of add(UInt(1),UInt(1))
|