Files
llvm-project/clang/test/CodeGenCXX/reflection-mangle-ms.cpp
2026-02-06 15:00:10 -05:00

8 lines
222 B
C++

// RUN: %clang_cc1 -std=c++26 -freflection -triple x86_64-pc-windows-msvc \
// RUN: -emit-llvm -o - %s -verify
int main() {
(void)(^^int); // expected-error {{cannot compile this scalar expression yet}}
return 0;
}