ccls/tests/multi_file/header.h

18 lines
224 B
C
Raw Normal View History

2017-04-03 01:34:15 +00:00
#pragma once
struct Base {};
struct SameFileDerived : Base {};
using Foo0 = SameFileDerived;
template <typename T>
void Foo1() {}
template <typename T>
struct Foo2 {};
enum Foo3 { A, B, C };
int Foo4;
2017-04-08 22:54:36 +00:00
static int Foo5;