``` module Foo { class X { public static F() {} public static G() { F(); } } } ``` Current error is: > Cannot find name 'F'. Suggestion: > Cannot find name 'F'. Did you mean to prefix the static function invocation with the class name, 'X.F()' ?
Current error is:
Suggestion: