We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c0ebb6c + d150e88 commit 5de92b1Copy full SHA for 5de92b1
src/items/type-aliases.md
@@ -20,13 +20,16 @@ type Point = (u8, u8);
20
let p: Point = (41, 68);
21
```
22
23
-A type alias to an enum type cannot be used to qualify the constructors:
+A type alias to a tuple-struct or unit-struct cannot be used to qualify that type's constructor:
24
25
-```rust
26
-enum E { A }
27
-type F = E;
28
-let _: F = E::A; // OK
29
-// let _: F = F::A; // Doesn't work
+```rust,edition2018,compile_fail
+struct MyStruct(u32);
+
+use MyStruct as UseAlias;
+type TypeAlias = MyStruct;
30
31
+let _ = UseAlias(5); // OK
32
+let _ = TypeAlias(5); // Doesn't work
33
34
35
[IDENTIFIER]: ../identifiers.md
0 commit comments