struct gpio_t {
int test;
};
#define TEST_1 reinterpret_cast<volatile gpio_t *> (0x12345678)
int main() {
TEST_1->test = 5;
}
ostream& tab(ostream & output)
{
return output<< '\t';
}
cout << 'a' << tab << 'b' << 'c' << endl;
basic_ostream<charT,traits>& operator<<(basic_ostream<charT,traits>& (*pf) (basic_ostream<charT,traits>&) );