rust/tests/ui/crashes/ice-4727-aux.rs
2019-11-06 07:33:56 +02:00

14 lines
217 B
Rust

//ignore-test
// This file is used by the ice-4727 test but isn't itself a test.
//
pub trait Trait {
fn fun(par: &str) -> &str;
}
impl Trait for str {
fn fun(par: &str) -> &str {
&par[0..1]
}
}