Skip to content

Commit 5de92b1

Browse files
authored
Merge pull request #831 from yaahc/master
fix out of date info on type aliases
2 parents c0ebb6c + d150e88 commit 5de92b1

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

src/items/type-aliases.md

+9-6
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,16 @@ type Point = (u8, u8);
2020
let p: Point = (41, 68);
2121
```
2222

23-
A type alias to an enum type cannot be used to qualify the constructors:
23+
A type alias to a tuple-struct or unit-struct cannot be used to qualify that type's constructor:
2424

25-
```rust
26-
enum E { A }
27-
type F = E;
28-
let _: F = E::A; // OK
29-
// let _: F = F::A; // Doesn't work
25+
```rust,edition2018,compile_fail
26+
struct MyStruct(u32);
27+
28+
use MyStruct as UseAlias;
29+
type TypeAlias = MyStruct;
30+
31+
let _ = UseAlias(5); // OK
32+
let _ = TypeAlias(5); // Doesn't work
3033
```
3134

3235
[IDENTIFIER]: ../identifiers.md

0 commit comments

Comments
 (0)