]> git.lizzy.rs Git - rust.git/blob - tests/ui/proc-macro/trailing-plus.rs
Rollup merge of #106726 - cmorin6:fix-comment-typos, r=Nilstrieb
[rust.git] / tests / ui / proc-macro / trailing-plus.rs
1 // check-pass
2 // aux-build:test-macros.rs
3 // compile-flags: -Z span-debug
4
5 #![no_std] // Don't load unnecessary hygiene information from std
6 extern crate std;
7
8 extern crate test_macros;
9
10 #[test_macros::print_attr]
11 fn foo<T>() where T: Copy + {
12 }
13
14 fn main() {}