aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/udlit-mangle.C
blob: 8840dcdce283155212fa54e114c6601d5d8f9921 (plain)
1
2
3
4
5
6
7
8
// PR c++/52521
// { dg-do compile { target c++11 } }
// { dg-final { scan-assembler "_Zli2_wPKc" } }

int operator "" _w(const char*);
int main() {
  123_w;
}