blob: de0036da78007d0b586613e1b65dff4c45e4606b [file] [log] [blame]
/*
:name: 22.6--ifdef-behavioral
:description: Test
:should_fail: 0
:tags: 22.6
:type: preprocessing
*/
module and_op (a, b, c);
output a;
input b, c;
`ifdef behavioral
wire a = b & c;
`else
and a1 (a,b,c);
`endif
endmodule