Using Self
when initializing a tuple struct
#47085
Labels
A-diagnostics
Area: Messages for errors, warnings, and lints
A-resolve
Area: Name/path resolution done by `rustc_resolve` specifically
C-enhancement
Category: An issue proposing an enhancement or a PR with one.
https://internals.rust-lang.org/t/initialization-syntax-for-self-tuple-structs/5389/5 talks about this problem. But the solution (using the typename, rather than Self) isn't discussed anywhere (that I could find).
Could a helpful compiler message be added (until the problem is fixed)? Something to the effect of
"Use of
Self
when initializing a tuple struct is not currently supported. Please try<typename>(...)
instead." (where code following 'Please try' is the user's code withSelf
replaced with the struct's typename).The text was updated successfully, but these errors were encountered: