aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/auto10.C
blob: 296873eeda8b801eefaa0634e592f6ca1dea7c18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Positive test for auto
// { dg-do run { target c++11 } }

#include <typeinfo>
extern "C" void abort();

int main()
{
  if (auto i = 42L)
    {
      if (typeid (i) != typeid (long int))
	abort ();
    }

  while (auto i = 1)
    {
      if (typeid (i) != typeid (int))
	abort ();
      break;
    }
}