solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/412_early_exit_on_fatal_errors.sol
Cryptomental 4116704442 test: Fix typos.
Fix typos using codespell.

Refs: #4442
2018-07-10 22:57:59 +02:00

12 lines
258 B
Solidity

// This tests a crash that occurred because we did not stop for fatal errors.
contract C {
struct S {
ftring a;
}
S public s;
function s() public s {
}
}
// ----
// DeclarationError: (114-120): Identifier not found or not unique.