Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-dev] Re: Eclipse Parsing file file error. Thanks.

Error while parsing
/E:/CI/bld/llvm/projects/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.spec.auto/p5.cpp.:Error
resolving 'a' in
/E:/CI/bld/llvm/projects/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.spec.auto/p5.cpp.
java.lang.StackOverflowError


content of E:/CI/bld/llvm/projects/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.spec.auto/p5.cpp:
// RUN: %clang_cc1 -fsyntax-only -verify %s -std=c++0x
void f() {
  auto a = a; // expected-error{{variable 'a' declared with 'auto'
type cannot appear in its own initializer}}
}

struct S { auto a; }; // expected-error{{'auto' not allowed in struct member}}

void f(auto a) // expected-error{{'auto' not allowed in function prototype}}
{
  try { } catch (auto a) {  } // expected-error{{'auto' not allowed in
exception declaration}}
}

template <auto a = 10> class C { }; // expected-error{{'auto' not
allowed in template parameter}}



-- 
         此致
礼
罗勇刚
Yours
    sincerely,
Yonggang Luo


Back to the top