blob: 8c51bf46de90446174c7f400d112a47e46cbc15d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
void test(void) {
auto const ic = 1;
auto iv = 1;
auto const& ric = ic;
auto& riv = iv;
const auto& ric2 = ic;
if (auto const& r(ric); r > 0) {
}
if (auto& r(riv); r > 0) {
}
}
|