xref: /aosp_15_r20/external/clang/test/Modules/Inputs/PR24954/A.h (revision 67e74705e28f6214e480b399dd47ea732279e315)
1 #include "B.h"
2 
3 template <class T>
4 class Expr {
5 public:
print(B::basic_ostream<char> & os)6    void print(B::basic_ostream<char>& os) {
7      os << B::setw(42);
8      os << B::endl;
9   }
10 };
11