You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
//parameterized module
module M where
parameter
x : [10]
type y = 10
//instantiated module
module N=M where
x = 20
// importing instantiated module
module O where
import N
// but I'm not able to access x value here for some reason