mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-19 03:25:54 -04:00

be possible to merge a declaration with an unresolved function type against one with a resolved function type. llvm-svn: 297316
12 lines
374 B
C++
12 lines
374 B
C++
// RUN: rm -rf %t
|
|
// RUN: %clang_cc1 -x c++ -std=c++1z -fmodules-cache-path=%t -fmodules -fimplicit-module-maps -I %S/Inputs/cxx17 %s -verify -fno-modules-error-recovery
|
|
|
|
// expected-no-diagnostics
|
|
struct MergeExceptionSpec {
|
|
~MergeExceptionSpec();
|
|
} mergeExceptionSpec; // trigger evaluation of exception spec
|
|
|
|
#include "decls.h"
|
|
|
|
MergeExceptionSpec mergeExceptionSpec2;
|