summaryrefslogtreecommitdiffstats
path: root/tests/run-make/issue-28766/foo.rs
blob: 1dcabe42dc11672121f1e50c935f5b178d295a1b (plain)
1
2
3
4
5
6
7
8
#![crate_type="lib"]
pub struct Foo(());

impl Foo {
  pub fn new() -> Foo {
    Foo(())
  }
}