mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-29 03:37:26 +03:00
eae7fe1bdb
This allows for testing these tests on editions other than 2015
24 lines
342 B
Rust
24 lines
342 B
Rust
// Confirm that we don't accidentally divide or mod by zero in llvm_type
|
|
|
|
//@ build-pass
|
|
|
|
mod a {
|
|
pub trait A {}
|
|
}
|
|
|
|
mod b {
|
|
pub struct Builder {}
|
|
|
|
pub fn new() -> Builder {
|
|
Builder {}
|
|
}
|
|
|
|
impl Builder {
|
|
pub fn with_a(&mut self, _a: fn() -> dyn (crate::a::A)) {}
|
|
}
|
|
}
|
|
|
|
pub use self::b::new;
|
|
|
|
fn main() {}
|