Clang Project

clang_source_code/test/Modules/Inputs/odr_hash-Friend/M3.h
1#include "Box.h"
2#include "M2.h"
3
4void Party() {
5  Box<> Present;
6  Present.test();
7}
8