>>556
try ブロックとラベル指定ブロックて用途違うんじゃね

let result = 'found: {
 for i in 0..100 {
  if f(i) {
   break 'found foo(i)?;
  }
 }
 bar()?;
};