aboutsummaryrefslogtreecommitdiffstats
path: root/lib/hipe/test/bs_SUITE_data/bs_utf.erl
blob: f50ae089641a9888a0db06ad545d38935af1d6b5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
%% -*- erlang-indent-level: 2 -*-
%%-------------------------------------------------------------------
%% Purpose: test support for UTF datatypes in binaries - INCOMPLETE
%%-------------------------------------------------------------------

-module(bs_utf).

-export([test/0]).

test() ->
  <<65>> = b65utf8(),
  ok = m(<<65>>).

m(<<65/utf8>>) ->
  ok.

b65utf8() ->
  <<65/utf8>>.