Files
mercury/tests/valid/constructor_arg_names.m
Zoltan Somogyi 7b2de447f5 A script to test whether the compiler can generate code
Estimated hours taken: 1

runtests:
	A script to test whether the compiler can generate code
	for each test case.

Mmake:
	Export a target for use by runtests. Add the two new test cases.

constructor_arg_names:
	Test the new functionality that allows programmers to attach
	names to constructor arguments.

middle_rec_labels:
	Regression test.
1996-11-04 07:25:26 +00:00

7 lines
131 B
Mathematica

:- module constructor_arg_names.
:- interface.
:- type test ---> f(field1:: int, field2:: string)
; g(field3:: string, float).