13 lines · plain
1// RUN: rm -rf %t2// RUN: %clang_cc1 -fsyntax-only -I%S/Inputs -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -verify %s3// expected-no-diagnostics4 5@import innerstructredef.one;6 7struct Outer {8// Should set lexical context when parsing 'Inner' here, otherwise there's a crash:9struct Inner {10 int x;11} field;12};13