``` void f(Flag.blah = false) {} ``` Does not work. You have to do: ``` void f(Flag.blah = Flag.blah(false)) {} ``` Which is redundant.