зеркало из https://github.com/microsoft/clang.git
20 строки
731 B
C++
20 строки
731 B
C++
// RUN: %clang_cc1 -verify -std=c++0x %s
|
|
// RUN: cp %s %t
|
|
// RUN: %clang_cc1 -x c++ -std=c++0x -fixit %t || true
|
|
// RUN: %clang_cc1 -Wall -pedantic -x c++ -std=c++0x %t
|
|
|
|
/* This is a test of the various code modification hints that only
|
|
apply in C++0x. */
|
|
struct A {
|
|
explicit operator int(); // expected-note{{conversion to integral type}}
|
|
};
|
|
|
|
void x() {
|
|
switch(A()) { // expected-error{{explicit conversion to}}
|
|
}
|
|
}
|
|
|
|
using ::T = void; // expected-error {{name defined in alias declaration must be an identifier}}
|
|
using typename U = void; // expected-error {{name defined in alias declaration must be an identifier}}
|
|
using typename ::V = void; // expected-error {{name defined in alias declaration must be an identifier}}
|