1 // { dg-do compile { target c++11 } }
3 // Literal operators can be inline.
6 operator ""_thing1(char cc)
9 int operator ""_thing2(char cc);
14 friend operator ""_thing2(char cc)
18 int i = operator ""_thing1('x');
21 int iF = operator ""_thing2('x');