This option controls whether local functions that do not capture any enclosing state should be marked static.
void Main() { static void LocalFunc() { } }
void Main() { void LocalFunc() { } }