//@ args = ['--std-feature']
#![no_std]externcrate alloc;usealloc::string::String;include!(env!("BINDINGS"));structComponent;export!(Component);implGuest forComponent{fnrun(){// Test the argument is `&str`
cat::foo("hello");// Test the return type is `String`
let t:String=cat::bar();assert_eq!(t,"world");}}