blob: 4f61de47d85459a525934983f99366ddbf4abdb9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// check-pass
// aux-build:test-macros.rs
// compile-flags: -Z span-debug
#![no_std] // Don't load unnecessary hygiene information from std
extern crate std;
extern crate test_macros;
#[test_macros::print_attr]
fn foo<T>() where T: Copy + {
}
fn main() {}
|