blob: f4c126a6e025b3179e69869ae59f7d217c08b236 [file] [log] [blame]
#[no_mangle]
pub fn řųśť() {} //~ `#[no_mangle]` requires ASCII identifier
pub struct Foo;
impl Foo {
#[no_mangle]
pub fn řųśť() {} //~ `#[no_mangle]` requires ASCII identifier
}
trait Bar {
fn řųśť();
}
impl Bar for Foo {
#[no_mangle]
fn řųśť() {} //~ `#[no_mangle]` requires ASCII identifier
}
fn main() {}