Home | History | Annotate | Download | only in Lexer
      1 // RUN: %clang_cc1 -E %s -o - | FileCheck %s
      2 
      3 // CHECK: always_inline
      4 #if __has_attribute(always_inline)
      5 int always_inline();
      6 #endif
      7 
      8 // CHECK: no_dummy_attribute
      9 #if !__has_attribute(dummy_attribute)
     10 int no_dummy_attribute();
     11 #endif
     12 
     13