mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-06-25 06:05:38 -06:00
29 lines
319 B
Text
29 lines
319 B
Text
typedef struct {
|
|
int x;
|
|
struct Foo {
|
|
int a;
|
|
} y;
|
|
struct {
|
|
int bar;
|
|
};
|
|
struct {
|
|
int foo;
|
|
} quack;
|
|
} name;
|
|
|
|
namespace std {
|
|
struct string {};
|
|
};
|
|
|
|
// void Foo(string a);
|
|
|
|
using namespace std;
|
|
|
|
struct Bar {
|
|
struct string {};
|
|
|
|
std::string Foo(string a);
|
|
};
|
|
|
|
void Foo(string a);
|
|
|