blob: b3a377c6fa634b121e68dccd878d7520fa7dfb93 [file] [log] [blame]
// RUN: rm -rf %t
// RUN: %clang_cc1 -triple x86_64-windows-msvc -fms-extensions -fms-compatibility -x c++ -std=c++20 -fmodules-cache-path=%t -fmodules -fimplicit-module-maps -I %S/Inputs/ms-enums %s -verify -fno-modules-error-recovery
#include "B.h"
// expected-note@A.h:1 {{previous declaration is here}}
// expected-note@A.h:1 2 {{previous definition is here}}
fwd_enum gv_enum; // expected-error {{must be imported}}
struct Foo {
enum fwd_enum enum_field; // expected-error 2 {{must be imported}}
};