You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
387 B
9 lines
387 B
// This checks that we are not parsing module maps if modules are not enabled.
|
|
|
|
// RUN: not %clang_cc1 -fmodules -fimplicit-module-maps -I %S/Inputs/unnecessary-module-map-parsing -fsyntax-only %s 2>&1 | FileCheck %s
|
|
// RUN: %clang_cc1 -I %S/Inputs/unnecessary-module-map-parsing -fsyntax-only %s
|
|
|
|
// CHECK: error: expected umbrella, header, submodule, or module export
|
|
|
|
#include "a1.h"
|