mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-22 23:55:08 +00:00
25 lines
462 B
C++
25 lines
462 B
C++
#pragma once
|
|
|
|
#include "../../third_party/doctest/doctest/doctest.h"
|
|
#include "../../third_party/macro_map.h"
|
|
#include "../../third_party/optional.h"
|
|
#include <rapidjson/rapidjson.h>
|
|
#include <rapidjson/document.h>
|
|
#include <rapidjson/prettywriter.h>
|
|
|
|
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; |