summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/decltype15.C
blob: 5c2d445debf035583623b67e3d02ad44f4f10ad1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// PR c++/38640
// { dg-do compile }
// { dg-options "-std=c++0x" }

template<int N> void foo (decltype (N));
template<long int N> void foo (decltype (N));

void
bar (void)
{
  foo<5> (6);
  foo<5L> (6L);
}