I have the following code snippet:
int i[] = {42, i[0]};
Is such initialization allowed or leads to undefined behaviour?
Three major compilers (gcc, clang, msvc) give me 42
for i[1]
. Hence looks legit, but I would like to see a cite from the standard for this case.
Yes, it is well-defined.
This is an aggregate1 initialization2. Aggregate initialization observes this rule:
1) http://eel.is/c++draft/dcl.init.aggr#1
2) http://eel.is/c++draft/dcl.init.aggr#3