summaryrefslogtreecommitdiffstats
path: root/tests/cxx/badinc-inl.h
blob: 4b261fd3b2f9cb941da53f20d51dbe7850986ed0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
//===--- badinc-inl.h - test input file for iwyu --------------------------===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//

#ifndef INCLUDE_WHAT_YOU_USE_TESTS_CXX_BADINC_INL_H_
#define INCLUDE_WHAT_YOU_USE_TESTS_CXX_BADINC_INL_H_

#include <stddef.h>
#include "tests/cxx/badinc-private.h"
#include "tests/cxx/badinc-private2.h"

typedef int (*InlH_FunctionPtr)(int);

InlH_FunctionPtr InlH_Function(class InlH_Class* c=NULL) {
  return NULL;
}

HPrivate_Enum InlH_PrivateFunction() { return HP1; }

#endif  // INCLUDE_WHAT_YOU_USE_TESTS_CXX_BADINC_INL_H_


/**** IWYU_SUMMARY

(tests/cxx/badinc-inl.h has correct #includes/fwd-decls)

***** IWYU_SUMMARY */