You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
224 B
18 lines
224 B
#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;
|