mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-19 19:45:40 -04:00

Unless the test is explicitly testing a driver feature if clang interface stubs I have changed the tests to use %clang_cc1. This should make some changes I plan to make to the driver job pipeline cause fewer test changes and breakages.
18 lines
466 B
C++
18 lines
466 B
C++
// RUN: %clang_cc1 -o - -emit-interface-stubs %s | FileCheck %s
|
|
|
|
// CHECK: --- !experimental-ifs-v1
|
|
// CHECK-NEXT: IfsVersion: 1.0
|
|
// CHECK-NEXT: Triple:
|
|
// CHECK-NEXT: ObjectFileFormat: ELF
|
|
// CHECK-NEXT: Symbols:
|
|
// CHECK-NEXT: ...
|
|
|
|
template<typename T> struct S2 { static unsigned f(); };
|
|
template<typename T> struct S3 { using S2<T>::f; };
|
|
|
|
typedef struct {} S4;
|
|
using ::S4;
|
|
|
|
template<typename T, T t> struct C3{};
|
|
template<bool b> using U1 = C3<bool, b>;
|