blob: e5bc7969b5c6c59da0236dd4916500f66a996acb [file] [log] [blame]
#![crate_name = "inner"]
pub struct SomeStruct;
fn asdf() {
const _FOO: () = {
impl Clone for SomeStruct {
fn clone(&self) -> Self {
SomeStruct
}
}
};
}