blob: 9300af18fb3248dc5a20ce1296cc4a844a857017 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
/* custom error: Cannot guarantee single use in static analysis, consider using DynamicLinear */
$x = WithSideEffects(ToMutDict({1:2},null));
$z = WithSideEffects(ToMutDict({3:4},null));
$y = IF(
Opaque(true),
($x,1),
($z,2)
);
select
FromMutDict($y.0), $y.1
|