diff options
-rw-r--r-- | Notes/Quirks.md | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Notes/Quirks.md b/Notes/Quirks.md index 258d095e..e9e8e077 100644 --- a/Notes/Quirks.md +++ b/Notes/Quirks.md @@ -34,4 +34,10 @@ Modules with the same name as primtiive types have interesting lookup quirks - Otherwise, treat it as `<u32 as ?>::some_name` +UFCS "inherent" paths can resolve to trait items +================================================ +_Unconfirmed_ +`<Foo>::SOMECONST` can either refer to `impl Foo { const SOMECONST... } or `impl Trait for Foo { const SOMECONST ... }` + + |