summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/initlist42.C
blob: e63959deb21375fdea0943140dbef2e78cde0522 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// { dg-options -std=c++0x }

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