// RUN: %clang_cc1 %s -verify -fsyntax-only
// rdar: // 6734520
typedef int INT1 ; // expected-note 3 {{'INT1' has been explicitly marked deprecated here}}
typedef INT1 INT2 ;
typedef INT1 INT1a; // expected-warning {{'INT1' is deprecated: Please avoid INT1}}
typedef INT1 INT1b ;
INT1 should_be_unavailable; // expected-warning {{'INT1' is deprecated: Please avoid INT1}}
INT1a should_not_be_deprecated;
INT1 ; // expected-note {{'f1' has been explicitly marked deprecated here}}
INT1 ; // expected-warning {{'INT1' is deprecated: Please avoid INT1}}
typedef enum Color ; // expected-note {{'Color' has been explicitly marked deprecated here}}
Color c1; // expected-warning {{'Color' is deprecated: Please avoid Color}}
int g1;
int g2 ; // expected-note {{'g2' has been explicitly marked deprecated here}}
int