]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-38857.rs
Require Drop impls to have the same constness on its bounds as the bounds on the...
[rust.git] / src / test / ui / issues / issue-38857.rs
1 fn main() {
2     let a = std::sys::imp::process::process_common::StdioPipes { ..panic!() };
3     //~^ ERROR failed to resolve: could not find `imp` in `sys` [E0433]
4     //~^^ ERROR module `sys` is private [E0603]
5 }