1 // RUN: %clang_cc1 -verify -fsyntax-only -std=c++0x %s
2 
3 // Make sure we know these are legitimate commas and not typos for ';'.
4 namespace Commas {
5   int a,
6   b [[ ]],
7   c alignas(double);
8 }
9