iverilog/ivtest/ivltests/sv_package_implicit_var2.v

7 lines
179 B
Coq
Raw Normal View History

// Check that it is not possible to declare a variable in a package without an explicit data
// type for the variable.
pacakge P;
[3:0] x; // This is a syntax error
endpackage