mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-19 11:35:51 -04:00

If an import directive was put into wrong context, the error message was obscure, complaining on misbalanced braces. To get more descriptive messages, annotation tokens related to modules are processed where they must not be seen. Differential Revision: http://reviews.llvm.org/D11844 llvm-svn: 248085
7 lines
271 B
C
7 lines
271 B
C
// RUN: rm -rf %t
|
|
// RUN: %clang_cc1 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -I %S/Inputs %s -verify
|
|
|
|
struct S1 { // expected-note{{'struct S1' begins here}}
|
|
#include "dummy.h" // expected-error{{import of module 'dummy' appears within 'struct S1'}}
|
|
}
|