about summary refs log tree commit diff
path: root/tests/ui/privacy/deref-separate-compile-unit-6919.rs
blob: 5d8934987e507d15bdd35fe51fcca20be85603d3 (plain)
1
2
3
4
5
6
7
8
9
10
// https://github.com/rust-lang/rust/issues/6919
//@ run-pass
#![allow(unused_attributes)]
//@ aux-build:iss-6919.rs

extern crate issue6919_3;

pub fn main() {
    let _ = issue6919_3::D.k;
}