mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 14:16:07 -06:00
46 lines
No EOL
377 B
C++
46 lines
No EOL
377 B
C++
#include <Core/Core.h>
|
|
|
|
void A() {
|
|
String x;
|
|
x.
|
|
}
|
|
|
|
struct Type { int j; };
|
|
|
|
struct Foo {
|
|
struct Type3 { int h; };
|
|
|
|
void Bar() {
|
|
Type t;
|
|
t;
|
|
}
|
|
|
|
void BBB() {
|
|
Type t;
|
|
t
|
|
}
|
|
|
|
void Type() {
|
|
|
|
}
|
|
};
|
|
|
|
void Foo::Bar() {
|
|
Type t;
|
|
String x;
|
|
t
|
|
}
|
|
|
|
void Foo::Bar2()
|
|
{
|
|
Type3 x;
|
|
x.h;
|
|
x.h;
|
|
x.h;
|
|
}
|
|
|
|
void Foo::Bar()
|
|
{
|
|
Type x;
|
|
x;
|
|
} |