Loading
#openttdcoop - Paste
Archives
Trending
Docs
Login
Paste #pv1vh4aqt
Wrap
Raw
Revise
struct Boo {
int a;
Boo& operator->()
{
return *this;
}
};
int main(int argc, char **argv)
{
Boo boo;
boo->a = 1;
}
Comments