I can't see anywhere that this should be the case, but I get an "Invalid declaration syntax" error in the get
everytime I declare a static property that does not start with an uppercase letter. E.g:
type Foo() = class
static member bar
with get() = "bar" //Invalid declaration syntax in get
end