1 // RUN: rm -rf %t
2 // RUN: %clang_cc1 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -I%S/Inputs/rec-types -fsyntax-only %s -verify
3 #include "a.h"
4 #include "c.h"
foo(struct some_descriptor * st)5 void foo(struct some_descriptor *st) { (void)st->thunk; }
6 
7 // expected-no-diagnostics
8