This option controls whether local functions should be written using expression-bodied syntax.
int Square(int x) => x * x;
int Square(int x) { return x * x; }