pike.git/
src/
testsuite.in
Branch:
Tag:
Non-build tags
All tags
No tags
2000-09-10
2000-09-10 09:17:05 by Mirar (Pontus Hagland) <pike@sort.mirar.org>
bff94fc4290016ece066bc53fdefea1503374119 (
19
lines) (+
18
/-
1
)
[
Show
|
Annotate
]
Branch:
7.9
new test: can class A create class B with parameters?
Rev: src/testsuite.in:1.328
1:
-
test_true([["$Id: testsuite.in,v 1.
327
2000/09/
09
12
:
38
:
14
mirar Exp $"]]);
+
test_true([["$Id: testsuite.in,v 1.
328
2000/09/
10
09:
17
:
05
mirar Exp $"]]);
cond([[all_constants()->_verify_internals]], [[
183:
class B { inherit A; string z="z"; constant q="x"+z; } ]])
+
test_compile_any([[
+
class A
+
{
+
object x(int y)
+
{
+
return B(y);
+
}
+
}
-
+
class B
+
{
+
void create(int y)
+
{
+
}
+
}
+
]])
+
test_do([[ class Foo {