]> git.proxmox.com Git - rustc.git/blame - vendor/cstr/tests/compile_fail/non-str.rs
Merge tag 'debian/1.52.1+dfsg1-1_exp2' into proxmox/buster
[rustc.git] / vendor / cstr / tests / compile_fail / non-str.rs
CommitLineData
6a06907d
XL
1use cstr::cstr;
2
3fn main() {
4 let _foo = cstr!(1);
5 let _foo = cstr!(("a"));
6 let _foo = cstr!(&1);
7}