2024-02-16 20:02:50 +00:00
|
|
|
//@ run-pass
|
2018-09-25 23:51:35 +02:00
|
|
|
#![allow(dead_code)]
|
2024-02-16 20:02:50 +00:00
|
|
|
//@ aux-build:issue-48984-aux.rs
|
2018-04-24 00:31:13 +09:00
|
|
|
extern crate issue48984aux;
|
|
|
|
use issue48984aux::Bar;
|
|
|
|
|
|
|
|
fn do_thing<T: Bar>() { }
|
|
|
|
|
|
|
|
fn main() { }
|