trait TraitA { fn func(); } struct StructA {} impl TraitA for StructA { fn func() {} } fn main() { TraitA::::func(); //~^ ERROR: cannot call associated function on trait without specifying the corresponding `impl` type [E0790] //~| help: use the fully-qualified path to the only available implementation }