about summary refs log tree commit diff
path: root/tests/ui/imports/issue-119369.rs
blob: 79615eba532ed609296b98db5c8730317e580314 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//@ check-pass
//@ aux-build: issue-119369-extern.rs

// https://github.com/rust-lang/rust/pull/119369#issuecomment-1874905662

#[macro_use]
extern crate issue_119369_extern;

#[derive(Hash)]
struct A;

fn main() {
    let _: Vec<i32> = vec![];
}