blob: 99b780bcf5c495f40a72085172c6fbabe6c9cb5f [file] [log] [blame] [edit]
//@ check-pass
#![allow(dead_code)]
//@ pretty-expanded FIXME #23616
fn foo<T: 'static>(_: T) {}
fn bar<T>(x: &'static T) {
foo(x);
}
fn main() {}