pike.git/
src/
testsuite.in
Branch:
Tag:
Non-build tags
All tags
No tags
2008-03-22
2008-03-22 14:10:05 by Henrik Grubbström (Grubba) <grubba@grubba.org>
01980ddf27f991e4c57cf97dd9b664cf339bc24f (
4
lines) (+
3
/-
1
)
[
Show
|
Annotate
]
Branch:
7.9
Added test for |= zapping zero type.
Rev: src/testsuite.in:1.801
1:
START_MARKER
-
test_true([["$Id: testsuite.in,v 1.
800
2008/03/22
13
:10:05 grubba Exp $"]]);
+
test_true([["$Id: testsuite.in,v 1.
801
2008/03/22
14
:10:05 grubba Exp $"]]);
// This triggered a bug only if run sufficiently early. test_compile_any([[#pike 7.2]])
7416:
test_any(int a=3; a&=10; return a,2) // testing |= test_any(int a=3; a|=10; return a,11)
+
test_any(int a = UNDEFINED; a|=1; return zero_type(a), 0)
// testing ^= test_any(int a=3; a^=10; return a,9) // testing <<=