Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.

Bug 311857

Summary: Indexer can't index the following code:) sign, Eclipse is crashed! because of stack overflow
Product: [Tools] CDT Reporter: Yonggang Luo <luoyonggang>
Component: cdt-indexerAssignee: Project Inbox <cdt-indexer-inbox>
Status: CLOSED DUPLICATE QA Contact: Markus Schorn <mschorn.eclipse>
Severity: critical    
Priority: P3    
Version: 7.0   
Target Milestone: ---   
Hardware: All   
OS: All   
Whiteboard:

Description Yonggang Luo CLA 2010-05-06 07:40:11 EDT
// 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}}
}

void g() {
  auto a; // expected-error{{declaration of variable 'a' with type 'auto' requires an initializer}}
  
  auto *b; // expected-error{{declaration of variable 'b' with type 'auto *' requires an initializer}}
}
Comment 1 Markus Schorn CLA 2010-05-18 02:25:01 EDT

*** This bug has been marked as a duplicate of bug 305970 ***