blob: 327bc0111bae8399fb9b5c435ec98142dc186789 (
plain)
1
2
3
4
5
6
7
|
// 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;
}
|