We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04a4ac1 commit fd1a9a9Copy full SHA for fd1a9a9
crates/ide/src/file_structure.rs
@@ -220,7 +220,9 @@ mod tests {
220
#[test]
221
fn test_nagative_trait_bound() {
222
let txt = r#"impl !Unpin for Test {}"#;
223
- check(txt, expect![[r#"
+ check(
224
+ txt,
225
+ expect![[r#"
226
[
227
StructureNode {
228
parent: None,
@@ -234,7 +236,8 @@ mod tests {
234
236
deprecated: false,
235
237
},
238
]
- "#]]);
239
+ "#]],
240
+ );
241
}
242
243
0 commit comments