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
I noticed a regression with files that contain type definitions.
I have a file, which contains a type definition
mutable struct A
x
end
and some method definitions
function g()
end
If the file is tracked with Revise and I change g, I get:
┌ Error: Failed to revise ...
│ exception =
│ invalid redefinition of constant A
which I did not expect, since I did not change the type definition. This is with Revise version 3.5.1.
I quickly tried with Revise version 3.4.0 and it is working as expected. This means, that when only g is changed but not A, then the file is revised properly.