``` rust fn main() { bar(baz,); foo::bar(baz,); foo.bar(baz,); //~ ERROR unexpected token: `)` } ``` It works for functions and static methods—it should also work for instance methods.