aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/initlist42.C
blob: fcd71cc766ff2dfa2de954cfc2dc422db53590b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// { dg-do compile { target c++11 } }

enum Unscoped { };
enum class Scoped { };

Unscoped bar(Unscoped x) { return x; }
Scoped bar(Scoped x) { return x; }

auto var1u = bar(Unscoped()); // OK
auto var1s = bar(Scoped()); // OK

auto var2u = bar(Unscoped{}); // #1 Error, but should work
auto var2s = bar(Scoped{}); // #2 Error, but should work