Skip to content

Instantly share code, notes, and snippets.

@CarlKCarlK
Last active October 19, 2022 21:19
Show Gist options
  • Save CarlKCarlK/6533e065db485a15ffab1a1f218dbbb8 to your computer and use it in GitHub Desktop.
Save CarlKCarlK/6533e065db485a15ffab1a1f218dbbb8 to your computer and use it in GitHub Desktop.
use anyinput::anyinput;
#[test]
fn one_input() {
#[anyinput]
pub fn any_str_len(s: AnyString) -> usize {
s.len()
}
assert!(any_str_len("123") == 3);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment