1// { dg-do assemble  }
2// Origin: Mark Mitchell <mark@codesourcery.com>
3
4typedef enum {} i;
5
6template <int II>
7class Bar {};
8
9void f (Bar<21>, int) {}
10void f (Bar<2>, i) {}
11