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.
11 lines
337 B
11 lines
337 B
4 months ago
|
// RUN: rm -rf %t
|
||
|
// RUN: %clang_cc1 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -I%S/Inputs/merge-name-for-linkage -verify %s
|
||
|
// expected-no-diagnostics
|
||
|
typedef union {} pthread_mutex_t;
|
||
|
typedef pthread_mutex_t pthread_mutex_t;
|
||
|
#include "a.h"
|
||
|
pthread_mutex_t x;
|
||
|
#include "b.h"
|
||
|
pthread_mutex_t y;
|
||
|
merged_after_definition z;
|