mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
[TMP] Repros for crashes in semantic tests
This commit is contained in:
parent
acad00f461
commit
206c06f0b3
@ -0,0 +1,12 @@
|
|||||||
|
pragma experimental solidity;
|
||||||
|
|
||||||
|
contract C {
|
||||||
|
fallback() external {
|
||||||
|
let x: bool;
|
||||||
|
|
||||||
|
if (x) {}
|
||||||
|
else {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// ----
|
||||||
|
// (): ->
|
@ -0,0 +1,9 @@
|
|||||||
|
pragma experimental solidity;
|
||||||
|
|
||||||
|
contract C {
|
||||||
|
fallback() external {
|
||||||
|
integer.abs();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// ----
|
||||||
|
// () ->
|
@ -0,0 +1,13 @@
|
|||||||
|
pragma experimental solidity;
|
||||||
|
|
||||||
|
type X = word;
|
||||||
|
|
||||||
|
class T: TC {}
|
||||||
|
|
||||||
|
instantiation X: TC {
|
||||||
|
function f() -> bool {
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// ----
|
||||||
|
// () ->
|
@ -0,0 +1,13 @@
|
|||||||
|
pragma experimental solidity;
|
||||||
|
|
||||||
|
type X = word;
|
||||||
|
|
||||||
|
class T: TC {}
|
||||||
|
|
||||||
|
instantiation X: TC {
|
||||||
|
function f() -> bool {
|
||||||
|
return "";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// ----
|
||||||
|
// () ->
|
@ -0,0 +1,9 @@
|
|||||||
|
pragma experimental solidity;
|
||||||
|
|
||||||
|
contract C {
|
||||||
|
fallback() external {
|
||||||
|
revert;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// ----
|
||||||
|
// () ->
|
Loading…
Reference in New Issue
Block a user