const_ref_use(i);// expected-warning {{variable 'i' is uninitialized when passed as a const reference argument here}}
intj=j+const_ref_use(j);// expected-warning {{variable 'j' is uninitialized when used within its own initialization}} expected-warning {{variable 'j' is uninitialized when passed as a const reference argument here}}
Aa1=const_ref_use_A(a1);// expected-warning {{variable 'a1' is uninitialized when passed as a const reference argument here}}
intk=const_use(k);// expected-warning {{variable 'k' is uninitialized when used within its own initialization}}
Aa2=const_use_A(a2);// expected-warning {{variable 'a2' is uninitialized when used within its own initialization}}
Aa3(const_ref_use_A(a3));// expected-warning {{variable 'a3' is uninitialized when passed as a const reference argument here}}
Aa4=a3!=a4;// expected-warning {{variable 'a4' is uninitialized when used within its own initialization}} expected-warning {{variable 'a4' is uninitialized when passed as a const reference argument here}}
intn=n;// expected-warning {{variable 'n' is uninitialized when used within its own initialization}}