1 |
|
2 |
--| Copyright (c) 1993-2006 University of Southern California and contributors. |
3 |
--| All rights reserved. |
4 |
--| Your use of this work is governed under the terms of the GNU General |
5 |
--| Public License version 2. |
6 |
|
7 |
-- To reproduce error: |
8 |
-- Compile with classes as is. Then replace declaration for `feat' |
9 |
-- with the commented line below (different actual generic parm). |
10 |
-- Recompile. Exception trace while melting changes. |
11 |
|
12 |
class |
13 |
TEST |
14 |
creation |
15 |
make |
16 |
feature |
17 |
|
18 |
make is |
19 |
do |
20 |
end; |
21 |
|
22 |
feat: TEST1 [expanded TEST2 [STRING]]; |
23 |
end |
24 |
|