rust/crates/syntax
bors[bot] 1e8d1e84b2
Merge #10689
10689: Handle pub tuple fields in tuple structs r=Veykril a=adamrk

The current implementation will throw a parser error for tuple structs
that contain a pub tuple field. For example,
```rust
struct Foo(pub (u32, u32));
```
is valid Rust, but rust-analyzer will throw a parser error.  This is
because the parens after `pub` is treated as a visibility context.
Allowing a tuple type to follow `pub` in the special case when we are
defining fields in a tuple struct can fix the issue.

I guess this is a really minor case because there's not much reason
for having a tuple type within a struct tuple, but it is valid rust syntax...

Co-authored-by: Adam Bratschi-Kaye <ark.email@gmail.com>
2021-11-10 21:08:51 +00:00
..
fuzz Set MSRV 2021-10-23 15:07:11 +03:00
src Fix for-loop expressions breaking with BlockExpr iterable 2021-10-30 16:37:32 +02:00
test_data Handle pub tuple fields in tuple structs 2021-11-10 21:29:50 +01:00
Cargo.toml Replace some String usages with SmolStr in completions 2021-11-05 12:30:39 +01:00