Files
1819old/CplusplusPractice/namespace.cc
2025-06-23 21:09:25 +09:00

11 lines
134 B
C++

#include <iostream>
#include "header1.h"
#include "header2.h"
using namespace header1;
int main()
{
foo();
header2::foo();
}