brintos

brintos / llvm-project-archived public Read only

0
0
Text · 432 B · cf95ae7 Raw
14 lines · cpp
1// RUN: %clang_cc1 -std=c++11 -verify %s -Wunused2 3namespace {4double operator""_x(long double value) { return double(value); }5int operator""_ii(long double value) { return int(value); } // expected-warning {{not needed and will not be emitted}}6}7 8namespace rdar13589856 {9  template<class T> double value() { return 3.2_x; }10  template<class T> int valuei() { return 3.2_ii; }11 12  double get_value() { return value<double>(); }13}14