julia> type Column
a::Int
Column2() = new(1)
endjulia> Column.names, Column.types ((:a,),(Int64,)) julia> Column Column (constructor with 0 methods) As far as I can tell the Column2() has disappeared - should be an error?
