aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/udlit-mangle.C
blob: 6de31b65ea71f023084fdc5f6392b41d9589c652 (plain)
1
2
3
4
5
6
7
8
// PR c++/52521
// { dg-options -std=c++0x }
// { dg-final { scan-assembler "_Zli2_wPKc" } }

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