aboutsummaryrefslogtreecommitdiff
path: root/test/errors/init/Output.fir
blob: 0b7a7f8016359baa1b4bc0bd066950f08c13f739 (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)