
This diff changes llvm-ifs to use unified IFS file format and perform other renaming changes in preparation for the merging between elfabi/ifs. Differential Revision: https://reviews.llvm.org/D99810
13 lines
277 B
C++
13 lines
277 B
C++
// 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<typename T> class C1 {
|
|
long a;
|
|
operator long() const { return a; }
|
|
};
|