1// { dg-do assemble  }
2// Origin: Mark Mitchell <mark@codesourcery.com>
3
4template <class T>
5void f (T t) {
6  const_cast<T>(t);
7}
8