A4-Tacks
c47f4e036a
fix: cfg_select supports non token-tree tokens
- Fix single non-curly groups is ignored `true => ((),)`, old: `(),`, new: `((),)`
Example
---
```rust
const _: i32 = cfg_select! { true => 2 + 3, _ => 3 + 4 };
```
**Before this PR**
```rust
const _: i32 = cfg_select! { true => 2 /* expected a token tree after `=>` */+ 3, _ => 3 + 4 };
```
**After this PR**
```rust
const _: i32 = 2 + 3;
```
2026-03-06 18:00:55 +08:00
..
2026-03-02 18:11:13 -08:00
2026-03-05 08:57:32 +00:00
2026-03-06 18:00:55 +08:00
2026-03-06 18:00:55 +08:00
2026-03-04 16:08:04 +00:00
2026-03-05 01:25:35 +02:00
2026-03-04 05:05:22 +00:00
2026-03-05 02:30:02 +00:00
2026-02-20 11:05:31 +00:00
2026-02-24 18:59:02 +06:00
2026-02-19 09:35:50 +05:30
2026-03-04 08:06:36 +08:00
2026-03-04 08:06:36 +08:00
2026-02-19 09:35:50 +05:30
2026-02-17 15:43:36 +00:00
2026-03-06 07:18:44 +02:00
2026-02-28 12:52:51 +01:00
2026-02-13 11:33:11 +00:00
2026-02-27 19:39:12 +08:00