// RUN: %clang_cc1 -verify -std=c++11 -fsyntax-only %s template using foo = struct foo { // expected-error {{'foo' cannot be defined in a type alias template}} T size = 0; }; foo a;