Test: Update t_interface_parent_scope (#1623)
This commit is contained in:
parent
aa6fbd35db
commit
87224db145
|
|
@ -4,15 +4,16 @@
|
|||
// without warranty, 2019 by Driss Hafdi.
|
||||
// SPDX-License-Identifier: CC0-1.0
|
||||
|
||||
interface Foo();
|
||||
interface Foo;
|
||||
logic quux;
|
||||
endinterface
|
||||
|
||||
module Bar();
|
||||
module Bar;
|
||||
// Issue# 1623 - seems legal
|
||||
always_comb foo.quux = '0;
|
||||
endmodule
|
||||
|
||||
module Baz();
|
||||
module Baz;
|
||||
Foo foo ();
|
||||
Bar bar ();
|
||||
endmodule
|
||||
Loading…
Reference in New Issue