Skip to content

Commit ebf1252

Browse files
committed
Add test for braced-macro followed by . or ?.
1 parent 3caf0bc commit ebf1252

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
// check-pass
2+
3+
use std::io::Write;
4+
5+
fn main() -> Result<(), std::io::Error> {
6+
vec! { 1, 2, 3 }.len();
7+
write! { vec![], "" }?;
8+
Ok(())
9+
}

0 commit comments

Comments
 (0)