blob: e905ec0b99298fe5ecccd10b0df87e7f887d4869 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# this one causes the compiler to run out of heap in the simplifier
def set_opts( name, opts ):
opts.expect = 'fail'
test('okeefe_neural',
[when(fast(), skip),
set_opts,
extra_clean(['Main.hi'])],
multimod_compile_and_run,
['Main', '-package lang +RTS -M64m -RTS'])
|