Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ignored or could not reach conclusion not highlighted in gutter #3821

Closed
MikaelMayer opened this issue Mar 29, 2023 · 0 comments · Fixed by #3826
Closed

Ignored or could not reach conclusion not highlighted in gutter #3821

MikaelMayer opened this issue Mar 29, 2023 · 0 comments · Fixed by #3826
Labels
kind: bug Crashes, unsoundness, incorrect output, etc. If possible, add a `part:` label

Comments

@MikaelMayer
Copy link
Member

Dafny version

4.0.0

Code to produce this issue

No response

Command to run and resulting output

function fib(n: nat): nat {
  if n <= 1 then n else fib(n-1) + fib(n-2)
}

method {:rlimit 1} Test(s: seq<nat>)
  requires |s| >= 1 && s[0] >= 0 {
  assert fib(10) == 1; assert {:split_here} s[0] >= 0;
}

What happened?

Püt this code in VSCode. You'll get:
image
Notably, an error context without error, but also a check on the line where the "could not reach conclusion" assertion is located.
image

What type of operating system are you experiencing the problem on?

Windows

@MikaelMayer MikaelMayer added the kind: bug Crashes, unsoundness, incorrect output, etc. If possible, add a `part:` label label Mar 29, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
kind: bug Crashes, unsoundness, incorrect output, etc. If possible, add a `part:` label
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant