// ANCHOR: here struct MyBox(T); impl MyBox { fn new(x: T) -> MyBox { MyBox(x) } } // ANCHOR_END: here fn main() {}