summaryrefslogtreecommitdiffstats
path: root/test/PCH/cxx-trailing-return.cpp
blob: ff85f6d1c5fda138da7da37643e414ac04f535ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// RUN: %clang_cc1 -pedantic-errors -std=c++11 -emit-pch %s -o %t-cxx11
// RUN: %clang_cc1 -pedantic-errors -std=c++11 -include-pch %t-cxx11 -verify %s

#ifndef HEADER_INCLUDED

#define HEADER_INCLUDED
typedef auto f() -> int; // expected-note {{here}}
typedef int g(); // expected-note {{here}}

#else

typedef void f; // expected-error {{typedef redefinition with different types ('void' vs 'auto () -> int')}}
typedef void g; // expected-error {{typedef redefinition with different types ('void' vs 'int ()')}}

#endif