iverilog/ivtest/ivltests/sv_package_implicit_var1.v

7 lines
173 B
Coq

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