You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
// RUN: not %clang_cc1 -triple aarch64-unknown-windows-msvc %s -emit-llvm \
|
|
// RUN: -o - 2>&1 | FileCheck %s
|
|
|
|
template<typename T> struct S {};
|
|
|
|
// CHECK: cannot mangle this built-in __SVInt8_t type yet
|
|
void f1(S<__SVInt8_t>) {}
|