mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
47969adf91
Change import syntax and cover with tests
16 lines
219 B
C
16 lines
219 B
C
#pragma once
|
|
|
|
#include <map>
|
|
#include <string>
|
|
|
|
#include "libstdlib/stub.h"
|
|
|
|
namespace solidity::stdlib
|
|
{
|
|
|
|
static std::map<std::string, std::string> sources = {
|
|
{ "std.stub", stub }
|
|
};
|
|
|
|
} // namespace solidity::stdlib
|