summaryrefslogtreecommitdiffstats
path: root/test/Parser/cxx0x-decl.cpp
blob: b9f5141a531eddbfd67cc4ed3f8757f9338cedea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// RUN: %clang_cc1 -verify -fsyntax-only -std=c++0x %s

// Make sure we know these are legitimate commas and not typos for ';'.
namespace Commas {
  int a,
  b [[ ]],
  c alignas(double);
}

struct S {};
enum E { e };

auto f() -> struct S {
  return S();
}
auto g() -> enum E {
  return E();
}