1// RUN: %clang_cc1 -std=c++20 %s -fsyntax-only -verify 2// expected-no-diagnostics 3export module mod; 4 5extern "C++" 6{ 7 export constexpr auto x = 10; 8} 9