summaryrefslogtreecommitdiff
path: root/lib/stdlib/test/escript_SUITE_data/bad_io_server
blob: 4a6e81c935112cbbbfd8b77dd33d6019792e929a (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env escript
%% -*- erlang -*-

-export([main/1]).

main(_) ->
    ok = io:setopts([{encoding,unicode}]),
    _D = erlang:system_flag(backtrace_depth, 0),
    group_leader(spawn(fun() -> ok end), self()),
    _ = '\x{400}'/0,
    ok.