1 // RUN: not %clang_cc1 -triple aarch64-unknown-windows-msvc %s -emit-llvm \
2 // RUN:   -o - 2>&1 | FileCheck %s
3 
4 template<typename T> struct S {};
5 
6 // CHECK: cannot mangle this built-in __SVInt8_t type yet
f1(S<__SVInt8_t>)7 void f1(S<__SVInt8_t>) {}
8