summaryrefslogtreecommitdiffstats
path: root/test/Modules/crash-typo-correction-visibility.cpp
blob: 518293026a6398acdac49affc960095ecd5da76c (plain)
1
2
3
4
5
6
7
8
9
10
// RUN: %clang_cc1 -x c++ -std=c++11 -fmodules -fmodule-name=module -o %T/module.pcm -emit-module %S/Inputs/crash-typo-correction-visibility/module.modulemap
// RUN: %clang_cc1 -x c++ -std=c++11 -fmodules -fmodule-file=%T/module.pcm %s -verify

struct S {
  int member; // expected-note {{declared here}}
};

int f(...);

int b = sizeof(f(member)); // expected-error {{undeclared identifier 'member'}}