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 51e9769 commit 8236715Copy full SHA for 8236715
tests/rustdoc-js-std/parser-errors.js
@@ -39,6 +39,7 @@ const QUERY = [
39
"a!!",
40
"mod:a!",
41
"a!::a",
42
+ "a<",
43
];
44
45
const PARSED = [
@@ -402,4 +403,13 @@ const PARSED = [
402
403
userQuery: "a!::a",
404
error: 'Cannot have associated items in macros',
405
},
406
+ {
407
+ elems: [],
408
+ foundElems: 0,
409
+ original: "a<",
410
+ returned: [],
411
+ typeFilter: -1,
412
+ userQuery: "a<",
413
+ error: "Unclosed `<`",
414
+ },
415
0 commit comments