fix comptime yield targeting
This commit is contained in:
@@ -170,10 +170,8 @@ ct_errdefer_check func() i32 {
|
||||
}
|
||||
|
||||
recover func() i32 {
|
||||
return may_fail(true) catch |e| {
|
||||
match e {
|
||||
.bad: yield 5
|
||||
}
|
||||
return may_fail(true) catch |e| match e {
|
||||
.bad: 5
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user