]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-32518.rs
Require Drop impls to have the same constness on its bounds as the bounds on the...
[rust.git] / src / test / ui / issues / issue-32518.rs
1 // run-pass
2 // no-prefer-dynamic
3 // aux-build:cgu_test.rs
4 // aux-build:cgu_test_a.rs
5 // aux-build:cgu_test_b.rs
6
7 extern crate cgu_test_a;
8 extern crate cgu_test_b;
9
10 fn main() {
11     cgu_test_a::a::a();
12     cgu_test_b::a::a();
13 }