Files
rust/tests/ui/cross-crate/reexported-structs-impls-link-error-9906.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
191 B
Rust
Raw Normal View History

2025-07-13 16:39:45 -04:00
// https://github.com/rust-lang/rust/issues/9906
//@ run-pass
//@ aux-build:aux-9906.rs
extern crate aux_9906 as testmod;
pub fn main() {
testmod::foo();
testmod::FooBar::new(1);
}