blob: 7b2575c60f1fdd49ba96b0817bb12cf5d535530f (
plain)
1
2
3
4
|
// RUN: %clang_cc1 -std=c++20 %s -fsyntax-only -verify
export struct Unit { // expected-error {{export declaration can only be used within a module interface}}
bool operator<(const Unit &);
};
|