1 // { dg-do compile { target c++11 } }
4 operator"" _Hertz(long double);
11 friend Foo operator"" _Bar(char);
14 operator"" _Hertz(long double omega)
15 { return omega / 6.28318530717958648; }
22 Foo f1 = operator"" _Bar('x');
26 long double fm1 = operator"" _Hertz(552.92L);
28 long double fm2 = 552.92_Hertz;