``` struct Foo { template <auto x> void foo() {} }; void bar() { } Foo f; f.foo<bar>(); ``` Results in "f" being underlined with an error squiggle and the message: `no instance of function template "Foo::foo" matches the argument list -- object type is: Foo`