// RUN: %clang_cc1 -o - -emit-interface-stubs %s | FileCheck %s // CHECK: --- !ifs-v1 // CHECK-NEXT: IfsVersion: 3.0 // CHECK-NEXT: Target: // CHECK-NEXT: Symbols: // CHECK-NEXT: ... template struct S2 { static unsigned f(); }; template struct S3 { using S2::f; }; typedef struct {} S4; using ::S4; template struct C3{}; template using U1 = C3;