summaryrefslogtreecommitdiffstats
path: root/Tests/CompileFeatures/cxx_user_literals.cpp
blob: 5144204d62750b55b1080e58cef85dcafd566b71 (plain)
1
2
3
4
5
6
7

long double operator"" _meters(long double);

void someFunc()
{
  long double i = 1.2_meters;
}