blob: f28d1e0b89723839c03763bcf3782ea263e27229 (
plain)
1
2
3
4
5
6
7
8
9
10
|
; RUN: firrtl -i %s -o %s.v -X verilog -p c 2>&1 | tee %s.out | FileCheck %s
; CHECK: Reference y is not fully initialized.
circuit Top :
module Top :
input clk : Clock
wire y : UInt<1>
when UInt(0) :
y := UInt(1)
|