blob: 7d936f76285dfcd790c48a30d50494de33cf66ae [file] [log] [blame]
onqtam9cccba72016-05-09 18:34:14 +03001#include "in.h"
2
3struct myType
4{ int a; };
5
6std::ostream& operator<<(std::ostream& stream, const myType&) {
7 stream << "omgomgomg";
8 return stream;
9}
10
11#include <iostream>
12
13void f() {
14 myType a{5};
15 std::cout << stringify(a) << std::endl;
16 //std::cout << stringify(int(6)) << std::endl;
17}