diff options
Diffstat (limited to 'src/test/scala/chiselTests/Vec.scala')
| -rw-r--r-- | src/test/scala/chiselTests/Vec.scala | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/test/scala/chiselTests/Vec.scala b/src/test/scala/chiselTests/Vec.scala index 395624f7..d8e3be10 100644 --- a/src/test/scala/chiselTests/Vec.scala +++ b/src/test/scala/chiselTests/Vec.scala @@ -265,4 +265,13 @@ class VecSpec extends ChiselPropSpec { }) } } + + property("It should be possible to initialize a Vec with DontCare") { + elaborate(new Module { + val io = IO(new Bundle { + val out = Output(Vec(4, UInt(8.W))) + }) + io.out := VecInit(Seq(4.U, 5.U, DontCare, 2.U)) + }) + } } |
