]> git.lizzy.rs Git - rust.git/blob - src/test/ui/include-macros/same-file-in-two-crates.rs
Require Drop impls to have the same constness on its bounds as the bounds on the...
[rust.git] / src / test / ui / include-macros / same-file-in-two-crates.rs
1 // This test makes sure that the compiler can handle the same source file to be
2 // part of the local crate *and* an upstream crate. This can happen, for example,
3 // when there is some auto-generated code that is part of both a library and an
4 // accompanying integration test.
5 //
6 // The test uses include!() to include a source file that is also part of
7 // an upstream crate.
8 //
9 // This is a regression test for https://github.com/rust-lang/rust/issues/85955.
10
11 // check-pass
12 // compile-flags: --crate-type=rlib
13 // aux-build:same-file-in-two-crates-aux.rs
14 extern crate same_file_in_two_crates_aux;
15
16 pub fn foo() -> u32 {
17     same_file_in_two_crates_aux::some_function() +
18     some_function()
19 }
20
21 include!("./auxiliary/same-file-in-two-crates-aux.rs");