repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
gccrs: testsuite: Add empty string macro test
[official-gcc.git]
/
gcc
/
testsuite
/
rust
/
compile
/
issue-1830_str.rs
blob
6cf835ba9bd5545e47f1b02f8fe7566f7815712c
1
#[rustc_builtin_macro]
2
macro_rules! include_str {
3
() => {{}};
4
}
5
6
fn main() {
7
include_str!(""); // { dg-excess-errors "Is a directory" }
8
}