flatdata icon indicating copy to clipboard operation
flatdata copied to clipboard

Properly support multiple namespaces in Go

Open VeaaC opened this issue 5 years ago • 0 comments

namespace n{
const i8 FOO = 0;
}

namespace m{
const i8 FOO = 1;
}

Currently results in

const (
...
    FOO int8 = 0
    FOO int8 = 1
)

Similarly for other constructs. This needs to be fixed if namespaces are to be properly supported by the Go backend.

FYI: @artemnikitin

VeaaC avatar Mar 15 '19 13:03 VeaaC