Home | History | Annotate | Download | only in dcl.link
      1 // RUN: %clang_cc1 -ast-print -o - %s | FileCheck %s
      2 
      3 extern "C" int f(void);
      4 // CHECK: extern "C" int f()
      5 
      6 extern "C" int v;
      7 // CHECK: extern "C" int v
      8