We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
This following code.
import <sstream>; import <string>; std::string s;
Compiled with
clang++ -std=c++20 -stdlib=libc++ -fmodule-file=sstream.pcm -fmodule-file=string.pcm -c PROGRAM.cc
Will produce a multiple definition error, saying that string is defined twice.