summaryrefslogtreecommitdiffstats
path: root/Tests/CompileFeatures/cxx_decltype.cpp
blob: 24ec51e8451b63e423651a4394e0a8cd5c4faf9d (plain)
1
2
3
4
5
6
7

int someFunc()
{
  int i = 0;
  decltype(i) other = 0;
  return other;
}