You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
426 B
10 lines
426 B
// RUN: %clang_cc1 -fsyntax-only -verify -std=c++98 -pedantic %s
|
|
|
|
// Intentionally compiled as C++03 to test the extension warning.
|
|
|
|
namespace a {} // original
|
|
namespace a {} // ext
|
|
inline namespace b {} // inline original expected-warning {{inline namespaces are}}
|
|
inline namespace b {} // inline ext expected-warning {{inline namespaces are}}
|
|
inline namespace {} // inline unnamed expected-warning {{inline namespaces are}}
|