pyhocon icon indicating copy to clipboard operation
pyhocon copied to clipboard

Can't prevent from merge

Open lizhen2017 opened this issue 3 years ago • 0 comments

a: {
    1: 1
}
b: {
    index: ${a}
}
c: ${b} {
    index: null
    index: {
        2: 2
    }
}

{ "index": { "2": 2 } } is expected, but output is { "index": { "1": 1, "2": 2 } }

lizhen2017 avatar Apr 12 '21 12:04 lizhen2017