fpc/tests/webtbf/tw35581.pp
2019-12-23 21:44:50 +00:00

17 lines
158 B
ObjectPascal

{ %fail }
{ %OPT=-Fcutf8 }
program cps;
{$mode objfpc}
{$h+}
type
Utf7String = type AnsiString(CP_UTF7);
var
U7: Utf7String;
begin
U7 := 'U7';
end.