aboutsummaryrefslogtreecommitdiff
path: root/test/Modules/linkage-merge.cpp
blob: 9cc9ae64bf9747a222269066ea3119214fb412e2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
// RUN: rm -rf %t
// RUN: %clang_cc1 -verify -fmodules -fmodules-cache-path=%t -I %S/Inputs %s

#include "linkage-merge-bar.h"

static int f(int);
int f(int);

static void g(int);
// expected-error@-1 {{declaration conflicts with target of using declaration already in scope}}
// expected-note@Inputs/linkage-merge-foo.h:2 {{target of using declaration}}
// expected-note@Inputs/linkage-merge-bar.h:3 {{using declaration}}