2025-08-20 14:02:44 -04:00
|
|
|
// https://github.com/rust-lang/rust/issues/7268
|
2019-11-04 00:00:00 +00:00
|
|
|
//@ check-pass
|
2018-09-25 23:51:35 +02:00
|
|
|
#![allow(dead_code)]
|
2015-03-22 13:13:15 -07:00
|
|
|
|
2014-11-03 00:58:00 +01:00
|
|
|
fn foo<T: 'static>(_: T) {}
|
|
|
|
|
|
|
|
|
|
fn bar<T>(x: &'static T) {
|
|
|
|
|
foo(x);
|
|
|
|
|
}
|
|
|
|
|
fn main() {}
|