aboutsummaryrefslogtreecommitdiff
path: root/unittests/SymbolFile/PDB/Inputs/test-pdb.h
blob: 273343bb03b07d64d0a0194c07039bff177c7625 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef TEST_PDB_H
#define TEST_PDB_H

#include "test-pdb-nested.h"

int bar(int n);

inline int foo(int n)
{
    return baz(n)+1;
}

#endif