]> git.lizzy.rs Git - rust.git/blob - src/test/run-make-fulldeps/issue-28766/foo.rs
Rollup merge of #98204 - Kixiron:stable-unzip, r=thomcc
[rust.git] / src / test / run-make-fulldeps / issue-28766 / foo.rs
1 #![crate_type="lib"]
2 pub struct Foo(());
3
4 impl Foo {
5   pub fn new() -> Foo {
6     Foo(())
7   }
8 }