We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
module Top #( param param_type : type = logic, ) { type type_type = logic<32>; struct struct_type { a: logic, } inst m: ModuleA #( T1: param_type, // ok T2: type_type, // ng T3: struct_type, // ng T4: logic // ng ); } module ModuleA #( param T1: type = logic, param T2: type = logic, param T3: type = logic, param T4: type = logic, ) {}
The text was updated successfully, but these errors were encountered:
Expression
TypeExpression
T2 and T3 will be fixed by #962. T4 requires more consideration in #960.
Sorry, something went wrong.
$size(data_type) also results in same error.
$size(data_type)
Successfully merging a pull request may close this issue.
The text was updated successfully, but these errors were encountered: