summaryrefslogtreecommitdiff
path: root/ops/optimizer_tests/strings_result.rs
blob: f89efaab1e4dd8066c8f5be20ccc90bf8e48707b (plain)
1
2
3
4
// https://github.com/denoland/deno/issues/16979
fn op_string_length(string: &str) -> Result<u32, AnyError> {
  Ok(string.len() as u32)
}