Is there syntax support for nested class construct...
# getting-started
e
Is there syntax support for nested class constructors as functions? If i have
Copy code
class Foo {
    class Bar {
    }
}
then
::Foo
is a well-formed function literal, whereas
::Foo.Bar
isn't. What is the way to refer to `Foo.Bar`'s constructor as a function?