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
Also, let x = [panic!(); 2]; crashes the compiler. Maybe it's the same issue?
PHINode should have one entry for each predecessor of its parent basic block!
%4 = phi i64 [ 0, %entry-block ], [ %5, %expr_repeat ]
LLVM ERROR: Broken function found, compilation aborted!
Currently,
[panic!(); 0]
will panic, butlet x = [panic!(); 0]
will not, because the expression is not evaluated in that case.The text was updated successfully, but these errors were encountered: