Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
114 B
Rust
Raw Normal View History

2020-03-07 04:38:50 +09:00
#[derive(Clone)]
pub struct Struct<A>(A);
impl<A> Struct<A> {
pub fn new() -> Self {
todo!()
}
}