aboutsummaryrefslogtreecommitdiff
path: root/crates/libsyntax2/src/lib.rs
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2018-09-03 22:49:21 +0100
committerAleksey Kladov <[email protected]>2018-09-03 22:49:21 +0100
commitc3e28f06463854e4711c4c49a49c77d1e136969f (patch)
tree9f031e9b9b38e1136a019e67120398f47f199066 /crates/libsyntax2/src/lib.rs
parent952da31f44b717d5679c1c0baffcd998c0f67266 (diff)
extern blocks
Diffstat (limited to 'crates/libsyntax2/src/lib.rs')
-rw-r--r--crates/libsyntax2/src/lib.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/crates/libsyntax2/src/lib.rs b/crates/libsyntax2/src/lib.rs
index ccf13e4ab..3b5115110 100644
--- a/crates/libsyntax2/src/lib.rs
+++ b/crates/libsyntax2/src/lib.rs
@@ -127,7 +127,8 @@ fn validate_block_structure(root: SyntaxNodeRef) {
127 assert_eq!( 127 assert_eq!(
128 node.parent(), 128 node.parent(),
129 pair.parent(), 129 pair.parent(),
130 "\nunpaired curleys:\n{}", 130 "\nunpaired curleys:\n{}\n{}\n",
131 root.text(),
131 utils::dump_tree(root), 132 utils::dump_tree(root),
132 ); 133 );
133 assert!( 134 assert!(