ccls/index_tests/multi_file/header.h
2019-10-23 21:56:50 -07:00

18 lines
224 B
C++

#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;
static int Foo5;