mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
22 lines
395 B
Rust
22 lines
395 B
Rust
// run-pass
|
|
|
|
#![feature(core_intrinsics)]
|
|
|
|
use std::any::type_name;
|
|
|
|
struct Bar<M>(#[allow(unused_tuple_struct_fields)] M);
|
|
|
|
impl<M> Bar<M> {
|
|
fn foo(&self) -> &'static str {
|
|
fn f() {}
|
|
fn type_name_of<T>(_: T) -> &'static str {
|
|
type_name::<T>()
|
|
}
|
|
type_name_of(f)
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
assert_eq!(Bar(()).foo(), "issue_61894::Bar<_>::foo::f");
|
|
}
|