]> git.lizzy.rs Git - rust.git/blob - src/test/run-make-fulldeps/issue-28766/foo.rs
Auto merge of #101969 - reez12g:issue-101306, r=reez12g
[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 }