Home | History | Annotate | Download | only in test

Lines Matching refs:StreamableInGlobal

109 class StreamableInGlobal {
111 virtual ~StreamableInGlobal() {}
114 inline void operator<<(::std::ostream& os, const StreamableInGlobal& /* x */) {
115 os << "StreamableInGlobal";
118 void operator<<(::std::ostream& os, const StreamableInGlobal* /* x */) {
119 os << "StreamableInGlobal*";
1051 StreamableInGlobal x;
1052 EXPECT_EQ("StreamableInGlobal", Print(x));
1053 EXPECT_EQ("StreamableInGlobal*", Print(&x));