solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/312_leading_zero_rationals_convert.sol

12 lines
366 B
Solidity
Raw Normal View History

contract A {
function f() pure public {
ufixed16x2 a = 0.5;
ufixed256x52 b = 0.0000000000000006661338147750939242541790008544921875;
fixed16x2 c = -0.5;
fixed256x52 d = -0.0000000000000006661338147750939242541790008544921875;
a; b; c; d;
}
}
2019-08-16 13:53:10 +00:00
// ----
// UnimplementedFeatureError: Not yet implemented - FixedPointType.