Skip to content

Commit b7cae85

Browse files
committed
[stdlib] Leave [U]Int128.~ disabled for now
1 parent 1da0bb8 commit b7cae85

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

stdlib/public/core/Int128.swift.gyb

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -378,9 +378,12 @@ extension _${U}Int128: FixedWidthInteger {
378378
% end
379379
}
380380

381+
#if false // This triggers an unexpected type checking issue with `~0` in an
382+
// lldb test
381383
internal static prefix func ~(x: Self) -> Self {
382384
Self(high: ~x.high, low: ~x.low)
383385
}
386+
#endif
384387

385388
internal static func &= (_ lhs: inout Self, _ rhs: Self) {
386389
lhs.low &= rhs.low

0 commit comments

Comments
 (0)