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
module repro
-- Warning goes away without mutual
mutual
data Foo : Type -> Type where
Foo1 : Foo v
data Bar : {v : Type} -> Nat -> Foo v -> Type where
Bar1 : Bar n Foo1
-- This works:
-- Bar1 : Bar n v
Expected Behavior
Bar should be strictly positive
Observed Behavior
Bar is reported as possibly not strictly positive when mutual keyword is present.
The text was updated successfully, but these errors were encountered:
Steps to Reproduce
Expected Behavior
Bar should be strictly positive
Observed Behavior
Bar is reported as possibly not strictly positive when mutual keyword is present.
The text was updated successfully, but these errors were encountered: