mirror of
https://git.proxmox.com/git/rustc
synced 2026-03-28 09:54:41 +00:00
12 lines
131 B
Rust
12 lines
131 B
Rust
//@ run-pass
|
|
//@ aux-build:issue-9155.rs
|
|
|
|
|
|
extern crate issue_9155;
|
|
|
|
struct Baz;
|
|
|
|
pub fn main() {
|
|
issue_9155::Foo::new(Baz);
|
|
}
|