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
This code crashes rust-analyzer. (thread 'Worker' has overflowed its stack)
pubenumTree{Node(TreeNode),Leaf(TreeLeaf),}pubstructTreeNode{pubdepth:usize,pubchildren:[Box<Tree>;8]}pubstructTreeLeaf{pubdepth:usize,pubdata:u8}pubfntest(){let tree = Tree::Leaf(TreeLeaf{depth:0,data:0});}
The issue seems to be with the creation of the tree, commenting out the body of the test function stops the error from occurring.
rust-analyzer version (VS-code): v0.3.1451
also tried pre-release version: v0.4.1450, the error still occurs.
The text was updated successfully, but these errors were encountered:
This code crashes rust-analyzer. (
thread 'Worker' has overflowed its stack
)The issue seems to be with the creation of the tree, commenting out the body of the
test
function stops the error from occurring.rust-analyzer version (VS-code): v0.3.1451
also tried pre-release version: v0.4.1450, the error still occurs.
The text was updated successfully, but these errors were encountered: