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
--- test::cycle::depth_not_on_stack stdout ----
program {
#[coinductive] trait A {} #[coinductive] trait B {} #[coinductive] trait C
{} #[coinductive] trait D {} #[coinductive] trait E {} impl < T > A for()
where T : B, {} impl < T > A for() where T : E {} impl < T > B for() where
T : C, T : E, {} impl < T > C for() where T : D, T : B, {} impl < T > D
for() where T : C {} impl < T > E for() where T : D {}
}
thread 'test::cycle::depth_not_on_stack' panicked at 'Negative subgoal had delayed_subgoals', /home/lcnr/chalk/chalk-engine/src/logic.rs:725:21
Found this while trying to get a test for the following buggy proof tree:
A
candidate 1:
B
C
D (d has depth 2)
C
B (depth 0)
E
D (from cache with depth 2, even though the depth should be 0)
ok (incorrectly moved to global cache)
FALSE
candidate 2:
E (ok)
The text was updated successfully, but these errors were encountered:
results in
Found this while trying to get a test for the following buggy proof tree:
The text was updated successfully, but these errors were encountered: