aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax/src
diff options
context:
space:
mode:
authorveetaha <[email protected]>2020-05-10 18:23:29 +0100
committerveetaha <[email protected]>2020-05-10 18:23:29 +0100
commit2af6b4b67ea72b7c8365eb1bc719c896b030123d (patch)
tree59b306accf1d00f52205a3df2ebedf082857f1b5 /crates/ra_syntax/src
parenta19b164661675be6a03cacfbc652cbd5f06492a0 (diff)
Correct `use` cannot have type args as per flodiebold
Diffstat (limited to 'crates/ra_syntax/src')
-rw-r--r--crates/ra_syntax/src/ast/generated/nodes.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_syntax/src/ast/generated/nodes.rs b/crates/ra_syntax/src/ast/generated/nodes.rs
index fc6733d64..3e5624bd2 100644
--- a/crates/ra_syntax/src/ast/generated/nodes.rs
+++ b/crates/ra_syntax/src/ast/generated/nodes.rs
@@ -2410,7 +2410,7 @@ impl TypeArg {
2410} 2410}
2411/// Associated type argument that is passed at generic instantiation site. 2411/// Associated type argument that is passed at generic instantiation site.
2412/// ``` 2412/// ```
2413/// use foo::<'a, u64, bool, ❰ Item = Bar ❱, 42>::baz; 2413/// type Foo = Bar::<'a, u64, bool, ❰ Item = Baz ❱, 42>::Bruh;
2414/// 2414///
2415/// trait Bruh<T>: Iterator<❰ Item: Debug ❱> {} 2415/// trait Bruh<T>: Iterator<❰ Item: Debug ❱> {}
2416/// ``` 2416/// ```