Renamed testcases from "*.sv" to "*.v"

This commit is contained in:
Bill Lye 2022-12-31 13:37:45 -08:00
parent 6f1165a628
commit 696c5d5d12
4 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
// testcase for Issue #823 on Github
// Testcase for Issue #823 on Github
module test;
struct packed {logic a;} s;

View File

@ -1,8 +1,8 @@
// Testcase for Issue #840 on Github
// Testchase for #840 on Github
module test;
logic [1:0][1:0] a;
logic [1:0][1:0] b;
logic [2:0][1:0] b;
generate
for(genvar i=0;i<3;i++)
assign b[i] = a[i];