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