1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461
|
(* TEST
expect;
*)
(* Subtyping is "syntactic" *)
fun (x : < x : int >) y z -> (y :> 'a), (x :> 'a), (z :> 'a);;
[%%expect{|
- : < x : int > ->
< x : int > -> < x : int > -> < x : int > * < x : int > * < x : int >
= <fun>
|}];;
(* - : (< x : int > as 'a) -> 'a -> 'a * 'a = <fun> *)
(* Quirks of class typing. *)
class ['a] c () = object
method f = (new c (): int c)
end and ['a] d () = object
inherit ['a] c ()
end;;
[%%expect{|
class ['a] c : unit -> object constraint 'a = int method f : int c end
and ['a] d : unit -> object constraint 'a = int method f : 'a c end
|}];;
(* class ['a] c : unit -> object constraint 'a = int method f : 'a c end *)
(* and ['a] d : unit -> object constraint 'a = int method f : 'a c end *)
(* 'a free in class d *)
class ['a] c () = object
method f (x : 'a) = ()
end and d () = object
inherit ['a] c ()
end;;
[%%expect{|
Lines 3-5, characters 4-3:
3 | ....and d () = object
4 | inherit ['a] c ()
5 | end..
Error: Some type variables are unbound in this type:
class d : unit -> object method f : 'a -> unit end
The method "f" has type "'a -> unit" where "'a" is unbound
|}];;
(* Create instance #c *)
class virtual c () = object
end and ['a] d () = object
constraint 'a = #c
method f (x : #c) = (x#x : int)
end;;
[%%expect{|
class virtual c : unit -> object end
and ['a] d :
unit -> object constraint 'a = < x : int; .. > method f : 'a -> int end
|}];;
(* class virtual c : unit -> object end *)
(* and ['a] d : *)
(* unit -> object constraint 'a = < x : int; .. > method f : 'a -> int end *)
class ['a] c () = object
constraint 'a = int
end and ['a] d () = object
constraint 'a = 'b #c
end;;
[%%expect{|
class ['a] c : unit -> object constraint 'a = int end
and ['a] d : unit -> object constraint 'a = int #c end
|}];;
(* class ['a] c : unit -> object constraint 'a = int end
and ['a] d : unit -> object constraint 'a = int #c end *)
(* Class type constraint *)
module F(X:sig type t end) = struct
class type ['a] c = object
method m: 'a -> X.t
end
end
class ['a] c = object
constraint 'a = 'a #F(Int).c
end
[%%expect {|
module F :
(X : sig type t end) ->
sig class type ['a] c = object method m : 'a -> X.t end end
class ['a] c : object constraint 'a = < m : 'a -> Int.t; .. > end
|}]
(* Self as parameter *)
class ['a] c (x : 'a) = object (self : 'b)
constraint 'a = 'b
method f = self
end;;
[%%expect{|
class ['a] c :
'a -> object ('a) constraint 'a = < f : 'a; .. > method f : 'a end
|}];;
new c;;
[%%expect{|
- : ('a c as 'a) -> 'a = <fun>
|}];;
(* class ['a] c :
'a -> object ('a) constraint 'a = < f : 'a; .. > method f : 'a end *)
(* - : ('a c as 'a) -> 'a = <fun> *)
class x () = object
method virtual f : int
end;;
[%%expect{|
Lines 1-3, characters 13-3:
1 | .............object
2 | method virtual f : int
3 | end..
Error: This non-virtual class has virtual methods.
The following methods are virtual : "f"
|}];;
(* The class x should be virtual: its methods f is undefined *)
(* Supplementary method g *)
class virtual c ((x : 'a): < f : int >) = object (_ : 'a) end
and virtual d x = object (_ : 'a)
inherit c x
method g = true
end;;
[%%expect{|
Line 1, characters 49-57:
1 | class virtual c ((x : 'a): < f : int >) = object (_ : 'a) end
^^^^^^^^
Error: This pattern cannot match self: it only matches values of type
"< f : int >"
|}];;
(* Constraint not respected *)
class ['a] c () = object
constraint 'a = int
method f x = (x : bool c)
end;;
[%%expect{|
Lines 1-4, characters 0-3:
1 | class ['a] c () = object
2 | constraint 'a = int
3 | method f x = (x : bool c)
4 | end..
Error: The abbreviation "c" is used with parameter(s) "bool "
which are incompatible with constraint(s) "int "
|}];;
(* Different constraints *)
class ['a, 'b] c () = object
constraint 'a = int -> 'c
constraint 'b = 'a * <x : 'b> * 'c * 'd
method f (x : 'a) (y : 'b) = ()
end;;
[%%expect{|
class ['a, 'b] c :
unit ->
object
constraint 'a = int -> 'c
constraint 'b = 'a * < x : 'b > * 'c * 'd
method f : 'a -> 'b -> unit
end
|}];;
class ['a, 'b] d () = object
inherit ['a, 'b] c ()
end;;
[%%expect{|
class ['a, 'b] d :
unit ->
object
constraint 'a = int -> 'd
constraint 'b = 'a * (< x : 'b > as 'c) * 'd * 'e
method f : (int -> 'd) -> (int -> 'd) * 'c * 'd * 'e -> unit
end
|}];;
(* Non-generic constraint *)
let x = ref [];;
[%%expect{|
val x : '_weak1 list ref = {contents = []}
|}];;
class ['a] c () = object
method f = (x : 'a)
end;;
[%%expect{|
Lines 1-3, characters 0-3:
1 | class ['a] c () = object
2 | method f = (x : 'a)
3 | end..
Error: The type of this class,
"class ['a] c :
unit -> object constraint 'a = '_weak1 list ref method f : 'a end",
contains the non-generalizable type variable(s): "'_weak1".
(see manual section 6.1.2)
|}];;
(* Abbreviations *)
type 'a c = <f : 'a c; g : 'a d>
and 'a d = <f : int c>;;
[%%expect{|
Line 1, characters 0-32:
1 | type 'a c = <f : 'a c; g : 'a d>
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Error: This recursive type is not regular.
The type constructor "c" is defined as
type "'a c"
but it is used as
"int c"
after the following expansion(s):
"< f : 'a c; g : 'a d >" contains "'a d",
"'a d" = "< f : int c >",
"< f : int c >" contains "int c"
All uses need to match the definition for the recursive type to be regular.
|}];;
type 'a c = <f : 'a c; g : 'a d>
and 'a d = <f : 'a c>;;
[%%expect{|
type 'a c = < f : 'a c; g : 'a d >
and 'a d = < f : 'a c >
|}];;
type 'a c = <f : 'a c>
and 'a d = <f : int c>;;
[%%expect{|
type 'a c = < f : 'a c >
and 'a d = < f : int c >
|}];;
type 'a u = < x : 'a>
and 'a t = 'a t u;;
[%%expect{|
Line 2, characters 0-17:
2 | and 'a t = 'a t u;;
^^^^^^^^^^^^^^^^^
Error: The type abbreviation "t" is cyclic:
"'a t u" contains "'a t",
"'a t" = "'a t u",
"'a t u" contains "'a t"
|}];; (* fails since 4.04 *)
type 'a u = 'a
and 'a t = 'a t u;;
[%%expect{|
Line 2, characters 0-17:
2 | and 'a t = 'a t u;;
^^^^^^^^^^^^^^^^^
Error: The type abbreviation "t" is cyclic:
"'a t" = "'a t u",
"'a t u" = "'a t"
|}];;
type 'a u = 'a;;
[%%expect{|
type 'a u = 'a
|}];;
type t = t u * t u;;
[%%expect{|
Line 1, characters 0-18:
1 | type t = t u * t u;;
^^^^^^^^^^^^^^^^^^
Error: The type abbreviation "t" is cyclic:
"t" = "t u * t u",
"t u * t u" contains "t u",
"t u" = "t"
|}];;
type t = <x : 'a> as 'a;;
[%%expect{|
type t = < x : 'a > as 'a
|}];;
type 'a u = 'a;;
[%%expect{|
type 'a u = 'a
|}];;
fun (x : t) (y : 'a u) -> x = y;;
[%%expect{|
- : t -> t u -> bool = <fun>
|}];;
fun (x : t) (y : 'a u) -> y = x;;
[%%expect{|
- : t -> t u -> bool = <fun>
|}];;
(* - : t -> t u -> bool = <fun> *)
(* Modules *)
module M =
struct
class ['a, 'b] c (x: int) (y: 'b) = object
constraint 'a = int -> bool
val x : float list = []
val y = y
method f (x : 'a) = ()
method g = y
end
end;;
[%%expect{|
module M :
sig
class ['a, 'b] c :
int ->
'b ->
object
constraint 'a = int -> bool
val x : float list
val y : 'b
method f : 'a -> unit
method g : 'b
end
end
|}];;
module M' = (M :
sig
class virtual ['a, 'b] c : int -> 'b -> object
constraint 'a = int -> bool
val x : float list
val y : 'b
method f : 'a -> unit
method g : 'b
end
end);;
[%%expect{|
module M' :
sig
class virtual ['a, 'b] c :
int ->
'b ->
object
constraint 'a = int -> bool
val x : float list
val y : 'b
method f : 'a -> unit
method g : 'b
end
end
|}];;
class ['a, 'b] d () y = object inherit ['a, 'b] M.c 7 y end;;
[%%expect{|
class ['a, 'b] d :
unit ->
'b ->
object
constraint 'a = int -> bool
val x : float list
val y : 'b
method f : (int -> bool) -> unit
method g : 'b
end
|}];;
class ['a, 'b] e () y = object inherit ['a, 'b] M'.c 1 y end;;
[%%expect{|
class ['a, 'b] e :
unit ->
'b ->
object
constraint 'a = int -> bool
val x : float list
val y : 'b
method f : (int -> bool) -> unit
method g : 'b
end
|}];;
(new M.c 3 "a")#g;;
[%%expect{|
- : string = "a"
|}];;
(new d () 10)#g;;
[%%expect{|
- : int = 10
|}];;
(new e () 7.1)#g;;
[%%expect{|
- : float = 7.1
|}];;
open M;;
[%%expect{|
|}];;
(new c 5 true)#g;;
[%%expect{|
- : bool = true
|}];;
(* #cl when cl is closed *)
module M = struct class ['a] c () = object method f (x : 'a) = () end end;;
[%%expect{|
module M : sig class ['a] c : unit -> object method f : 'a -> unit end end
|}];;
module M' =
(M : sig class ['a] c : unit -> object method f : 'a -> unit end end);;
[%%expect{|
module M' : sig class ['a] c : unit -> object method f : 'a -> unit end end
|}];;
fun x -> (x :> 'a #M.c);;
[%%expect{|
- : ('a #M.c as 'b) -> 'b = <fun>
|}];;
fun x -> (x :> 'a #M'.c);;
[%%expect{|
- : ('a #M'.c as 'b) -> 'b = <fun>
|}];;
class ['a] c (x : 'b #c) = object end;;
[%%expect{|
class ['a] c : 'a #c -> object end
|}];;
class ['a] c (x : 'b #c) = object end;;
[%%expect{|
class ['a] c : 'a #c -> object end
|}];;
(* Computation order *)
class c () = object method f = 1 end and d () = object method f = 2 end;;
[%%expect{|
class c : unit -> object method f : int end
and d : unit -> object method f : int end
|}];;
class e () = object inherit c () inherit d () end;;
[%%expect{|
class e : unit -> object method f : int end
|}];;
(new e ())#f;;
[%%expect{|
- : int = 2
|}];;
class c () = object val x = - true val y = -. () end;;
[%%expect{|
Line 1, characters 30-34:
1 | class c () = object val x = - true val y = -. () end;;
^^^^
Error: The constructor "true" has type "bool"
but an expression was expected of type "int"
|}];;
class c () = object method f = 1 method g = 1 method h = 1 end;;
[%%expect{|
class c : unit -> object method f : int method g : int method h : int end
|}];;
class d () = object method h = 2 method i = 2 method j = 2 end;;
[%%expect{|
class d : unit -> object method h : int method i : int method j : int end
|}];;
class e () = object
method f = 3
inherit c ()
method g = 3
method i = 3
inherit d ()
method j = 3
end;;
[%%expect{|
class e :
unit ->
object
method f : int
method g : int
method h : int
method i : int
method j : int
end
|}];;
let e = new e ();;
[%%expect{|
val e : e = <obj>
|}];;
e#f, e#g, e#h, e#i, e#j;;
[%%expect{|
- : int * int * int * int * int = (1, 3, 2, 2, 3)
|}];;
class c a = object val x = 1 val y = 1 val z = 1 val a = a end;;
[%%expect{|
class c : 'a -> object val a : 'a val x : int val y : int val z : int end
|}];;
class d b = object val z = 2 val t = 2 val u = 2 val b = b end;;
[%%expect{|
class d : 'a -> object val b : 'a val t : int val u : int val z : int end
|}];;
class e () = object
val x = 3
inherit c 5
val y = 3
val t = 3
inherit d 7
val u = 3
method x = x
method y = y
method z = z
method t = t
method u = u
method a = a
method b = b
end;;
[%%expect{|
Line 3, characters 2-13:
3 | inherit c 5
^^^^^^^^^^^
Warning 13 [instance-variable-override]: the following instance variables are overridden by the class c :
x
Line 4, characters 6-7:
4 | val y = 3
^
Warning 13 [instance-variable-override]: the instance variable y is overridden.
Line 6, characters 2-13:
6 | inherit d 7
^^^^^^^^^^^
Warning 13 [instance-variable-override]: the following instance variables are overridden by the class d :
t z
Line 7, characters 6-7:
7 | val u = 3
^
Warning 13 [instance-variable-override]: the instance variable u is overridden.
class e :
unit ->
object
val a : int
val b : int
val t : int
val u : int
val x : int
val y : int
val z : int
method a : int
method b : int
method t : int
method u : int
method x : int
method y : int
method z : int
end
|}];;
let e = new e ();;
[%%expect{|
val e : e = <obj>
|}];;
e#x, e#y, e#z, e#t, e#u, e#a, e#b;;
[%%expect{|
- : int * int * int * int * int * int * int = (1, 3, 2, 2, 3, 5, 7)
|}];;
class c (x : int) (y : int) = object
val x = x
val y = y
method x = x
method y = y
end;;
[%%expect{|
class c :
int ->
int -> object val x : int val y : int method x : int method y : int end
|}];;
class d x y = object inherit c x y end;;
[%%expect{|
class d :
int ->
int -> object val x : int val y : int method x : int method y : int end
|}];;
let c = new c 1 2 in c#x, c#y;;
[%%expect{|
- : int * int = (1, 2)
|}];;
let d = new d 1 2 in d#x, d#y;;
[%%expect{|
- : int * int = (1, 2)
|}];;
(* Parameters which does not appear in the object type *)
class ['a] c (x : 'a) = object end;;
[%%expect{|
class ['a] c : 'a -> object end
|}];;
new c;;
[%%expect{|
- : 'a -> 'a c = <fun>
|}];;
(* Private variables *)
(*
module type M = sig
class c : unit -> object val x : int end
class d : unit -> object inherit c val private x : int val x : bool end
end;;
[%%expect{|
foo
|}];;
class c (x : int) =
val private mutable x = x
method get = x
method set y = x <- y
end;;
[%%expect{|
foo
|}];;
let c = new c 5;;
[%%expect{|
foo
|}];;
c#get;;
[%%expect{|
foo
|}];;
c#set 7; c#get;;
[%%expect{|
foo
|}];;
class c () = val x = 1 val y = 1 method c = x end;;
[%%expect{|
foo
|}];;
class d () = inherit c () val private x method d = x end;;
[%%expect{|
foo
|}];;
class e () =
val x = 2 val y = 2 inherit d () method x = x method y = y
end;;
[%%expect{|
foo
|}];;
let e = new e () in e#x, e#y, e#c, e#d;;
[%%expect{|
foo
|}];;
*)
(* Forgotten variables in interfaces *)
module M :
sig
class c : unit -> object
method xc : int
end
end =
struct
class c () = object
val x = 1
method xc = x
end
end;;
[%%expect{|
module M : sig class c : unit -> object method xc : int end end
|}];;
class d () = object
val x = 2
method xd = x
inherit M.c ()
end;;
[%%expect{|
class d : unit -> object val x : int method xc : int method xd : int end
|}];;
let d = new d () in d#xc, d#xd;;
[%%expect{|
- : int * int = (1, 2)
|}];;
class virtual ['a] matrix (sz, init : int * 'a) = object
val m = Array.make_matrix sz sz init
method add (mtx : 'a matrix) = (mtx#m.(0).(0) : 'a)
end;;
[%%expect{|
Lines 1-4, characters 0-3:
1 | class virtual ['a] matrix (sz, init : int * 'a) = object
2 | val m = Array.make_matrix sz sz init
3 | method add (mtx : 'a matrix) = (mtx#m.(0).(0) : 'a)
4 | end..
Error: The abbreviation "'a matrix" expands to type "< add : 'a matrix -> 'a >"
but is used with type "< m : 'a array array; .. >"
|}];;
class c () = object method m = new c () end;;
[%%expect{|
class c : unit -> object method m : c end
|}];;
(new c ())#m;;
[%%expect{|
- : c = <obj>
|}];;
module M = struct class c () = object method m = new c () end end;;
[%%expect{|
module M : sig class c : unit -> object method m : c end end
|}];;
(new M.c ())#m;;
[%%expect{|
- : M.c = <obj>
|}];;
type uu = A of int | B of (<leq: 'a> as 'a);;
[%%expect{|
type uu = A of int | B of (< leq : 'a > as 'a)
|}];;
class virtual c () = object (_ : 'a) method virtual m : 'a end;;
[%%expect{|
class virtual c : unit -> object ('a) method virtual m : 'a end
|}];;
module S = (struct
let f (x : #c) = x
end : sig
val f : (#c as 'a) -> 'a
end);;
[%%expect{|
module S : sig val f : (#c as 'a) -> 'a end
|}];;
module S = (struct
let f (x : #c) = x
end : sig
val f : #c -> #c
end);;
[%%expect{|
Lines 1-3, characters 12-3:
1 | ............struct
2 | let f (x : #c) = x
3 | end......
Error: Signature mismatch:
Modules do not match:
sig val f : (#c as 'a) -> 'a end
is not included in
sig val f : #c -> #c end
Values do not match:
val f : (#c as 'a) -> 'a
is not included in
val f : #c -> #c
The type "(#c as 'a) -> 'a" is not compatible with the type "#c -> #c"
Type "#c as 'a" = "< m : 'a; .. >" is not compatible with type
"#c as 'b" = "< m : 'b; .. >"
Type "'a" is not compatible with type "'b"
|}];;
module M = struct type t = int class t () = object end end;;
[%%expect{|
Line 1, characters 37-38:
1 | module M = struct type t = int class t () = object end end;;
^
Error: Multiple definition of the type name "t".
Names must be unique in a given structure or signature.
|}];;
fun x -> (x :> < m : 'a -> 'a > as 'a);;
[%%expect{|
- : < m : (< m : 'a > as 'b) -> 'b as 'a; .. > -> 'b = <fun>
|}];;
fun x -> (x : int -> bool :> 'a -> 'a);;
[%%expect{|
Line 1, characters 9-38:
1 | fun x -> (x : int -> bool :> 'a -> 'a);;
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Error: Type "int -> bool" is not a subtype of "int -> int"
Type "bool" is not a subtype of "int"
|}];;
fun x -> (x : int -> bool :> int -> int);;
[%%expect{|
Line 1, characters 9-40:
1 | fun x -> (x : int -> bool :> int -> int);;
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Error: Type "int -> bool" is not a subtype of "int -> int"
Type "bool" is not a subtype of "int"
|}];;
fun x -> (x : < > :> < .. >);;
[%%expect{|
- : < > -> < > = <fun>
|}];;
fun x -> (x : < .. > :> < >);;
[%%expect{|
- : < .. > -> < > = <fun>
|}];;
let x = ref [];;
[%%expect{|
val x : '_weak2 list ref = {contents = []}
|}];;
module F(X : sig end) =
struct type t = int let _ = (x : < m : t> list ref) end;;
[%%expect{|
module F : (X : sig end) -> sig type t = int end
|}];;
x;;
[%%expect{|
- : < m : int > list ref = {contents = []}
|}];;
type 'a t;;
[%%expect{|
type 'a t
|}];;
fun (x : 'a t as 'a) -> ();;
[%%expect{|
Line 1, characters 17-19:
1 | fun (x : 'a t as 'a) -> ();;
^^
Error: This alias is bound to type "'a t" but is used as an instance of type "'a"
The type variable "'a" occurs inside "'a t"
|}];;
fun (x : 'a t) -> (x : 'a); ();;
[%%expect{|
Line 1, characters 19-20:
1 | fun (x : 'a t) -> (x : 'a); ();;
^
Error: The value "x" has type "'a t" but an expression was expected of type "'a"
The type variable "'a" occurs inside "'a t"
|}];;
fun ((x : 'a) | (x : 'a t)) -> ();;
[%%expect{|
Line 1, characters 10-12:
1 | fun ((x : 'a) | (x : 'a t)) -> ();;
^^
Error: This type "'a t" should be an instance of type "'a"
The type variable "'a" occurs inside "'a t"
|}];;
fun ((x : 'a) | (x : 'a t)) -> ();;
[%%expect{|
Line 1, characters 10-12:
1 | fun ((x : 'a) | (x : 'a t)) -> ();;
^^
Error: This type "'a t" should be an instance of type "'a"
The type variable "'a" occurs inside "'a t"
|}];;
type 'a t = < x : 'a >;;
[%%expect{|
type 'a t = < x : 'a >
|}];;
fun (x : 'a t as 'a) -> ();;
[%%expect{|
- : ('a t as 'a) -> unit = <fun>
|}];;
fun (x : 'a t) -> (x : 'a); ();;
[%%expect{|
Line 1, characters 18-26:
1 | fun (x : 'a t) -> (x : 'a); ();;
^^^^^^^^
Warning 10 [non-unit-statement]: this expression should have type unit.
- : ('a t as 'a) t -> unit = <fun>
|}];;
fun ((x : 'a) | (x : 'a t)) -> ();;
[%%expect{|
Line 1, characters 17-18:
1 | fun ((x : 'a) | (x : 'a t)) -> ();;
^
Warning 12 [redundant-subpat]: this sub-pattern is unused.
- : ('a t as 'a) -> unit = <fun>
|}];;
class ['a] c () = object
constraint 'a = < .. > -> unit
method m = (fun x -> () : 'a)
end;;
[%%expect{|
class ['a] c :
unit ->
object constraint 'a = (< .. > as 'b) -> unit method m : 'b -> unit end
|}];;
class ['a] c () = object
constraint 'a = unit -> < .. >
method m (f : 'a) = f ()
end;;
[%%expect{|
class ['a] c :
unit ->
object constraint 'a = unit -> (< .. > as 'b) method m : 'a -> 'b end
|}];;
class c () = object (self)
method private m = 1
method n = self#m
end;;
[%%expect{|
class c : unit -> object method private m : int method n : int end
|}];;
class d () = object (self)
inherit c ()
method o = self#m
end;;
[%%expect{|
class d :
unit -> object method private m : int method n : int method o : int end
|}];;
let x = new d () in x#n, x#o;;
[%%expect{|
- : int * int = (1, 1)
|}];;
class c () = object method virtual m : int method private m = 1 end;;
[%%expect{|
class c : unit -> object method m : int end
|}];;
(* Recursion (cf. PR#5291) *)
class a = let _ = new b in object end
and b = let _ = new a in object end;;
[%%expect{|
Line 1, characters 10-37:
1 | class a = let _ = new b in object end
^^^^^^^^^^^^^^^^^^^^^^^^^^^
Error: This kind of recursive class expression is not allowed
|}];;
class a = let _ = new a in object end;;
[%%expect{|
Line 1, characters 10-37:
1 | class a = let _ = new a in object end;;
^^^^^^^^^^^^^^^^^^^^^^^^^^^
Error: This kind of recursive class expression is not allowed
|}];;
(* More tests about recursion in class declarations *)
class a = let _x() = new a in object end;;
[%%expect{|
class a : object end
|}];;
class a = object end
and b = let _x() = new a in object end;;
[%%expect{|
class a : object end
and b : object end
|}];;
class a = let x() = new a in let y = x() in object end;;
[%%expect{|
Line 1, characters 10-54:
1 | class a = let x() = new a in let y = x() in object end;;
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Error: This kind of recursive class expression is not allowed
|}];;
class a = object end
and b = let x() = new a in let y = x() in object end;;
[%%expect{|
Line 2, characters 8-52:
2 | and b = let x() = new a in let y = x() in object end;;
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Error: This kind of recursive class expression is not allowed
|}];;
class a = object val x = 3 val y = x + 2 end;;
[%%expect{|
Line 1, characters 35-36:
1 | class a = object val x = 3 val y = x + 2 end;;
^
Error: The instance variable "x"
cannot be accessed from the definition of another instance variable
|}];;
class a = object (self) val x = self#m method m = 3 end;;
[%%expect{|
Line 1, characters 32-36:
1 | class a = object (self) val x = self#m method m = 3 end;;
^^^^
Error: The self variable "self"
cannot be accessed from the definition of an instance variable
|}];;
class a = object method m = 3 end
class b = object inherit a as super val x = super#m end;;
[%%expect{|
class a : object method m : int end
Line 2, characters 44-49:
2 | class b = object inherit a as super val x = super#m end;;
^^^^^
Error: The ancestor variable "super"
cannot be accessed from the definition of an instance variable
|}];;
(* Some more tests of class idiosyncrasies *)
class c = object method private m = 3 end
and d = object method o = object inherit c end end;;
[%%expect {|
class c : object method private m : int end
and d : object method o : c end
|}];;
class c = object(_ : 'self)
method o = object(_ : 'self) method o = assert false end
end;;
[%%expect {|
Line 2, characters 13-58:
2 | method o = object(_ : 'self) method o = assert false end
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Error: Cannot close type of object literal: "< o : '_weak4; .. > as '_weak3"
it has been unified with the self type of a class that is not yet
completely defined.
|}];;
class c = object
method m = 1
inherit object (self)
method n = self#m
end
end;;
[%%expect {|
Line 4, characters 17-23:
4 | method n = self#m
^^^^^^
Warning 17 [undeclared-virtual-method]: the virtual method m is not declared.
class c : object method m : int method n : int end
|}];;
class virtual c = object (self : 'c)
constraint 'c = < f : int; .. >
end
[%%expect {|
class virtual c : object method virtual f : int end
|}];;
class virtual c = object (self : 'c)
constraint 'c = < f : int; .. >
method g = self # f
end
[%%expect {|
class virtual c : object method virtual f : int method g : int end
|}];;
class [ 'a ] c = object (_ : 'a) end;;
let o = object
method m = 1
inherit [ < m : int > ] c
end;;
[%%expect {|
class ['a] c : object ('a) constraint 'a = < .. > end
Line 4, characters 14-25:
4 | inherit [ < m : int > ] c
^^^^^^^^^^^
Error: The type parameter "< m : int >"
does not meet its constraint: it should be "< .. >"
Self type cannot be unified with a closed object type
|}];;
class type [ 'a ] d = object method a : 'a method b : 'a end
class c : ['a] d = object (self) method a = 1 method b = assert false end;;
[%%expect {|
class type ['a] d = object method a : 'a method b : 'a end
Line 2, characters 19-73:
2 | class c : ['a] d = object (self) method a = 1 method b = assert false end;;
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Error: The class type object method a : int method b : 'a end
is not matched by the class type ['_a] d
The class type object method a : int method b : 'a end
is not matched by the class type
object method a : 'a method b : 'a end
The method a has type "int" but is expected to have type "'a"
Type "int" is not compatible with type "'a"
|}];;
class type ['a] ct = object ('a) end
class c : [ < a : int; ..> ] ct = object method a = 3 end;;
[%%expect {|
class type ['a] ct = object ('a) constraint 'a = < .. > end
Line 2, characters 10-31:
2 | class c : [ < a : int; ..> ] ct = object method a = 3 end;;
^^^^^^^^^^^^^^^^^^^^^
Error: This non-virtual class has undeclared virtual methods.
The following methods were not declared : "a"
|}];;
class virtual c : [ < a : int; ..> ] ct = object method a = 3 end;;
[%%expect {|
class virtual c : object method virtual a : int end
|}];;
class c : object
method m : < m : 'a > as 'a
end = object (self)
method m = self
end;;
[%%expect {|
Lines 3-5, characters 8-3:
3 | ........object (self)
4 | method m = self
5 | end..
Error: The class type object ('a) method m : < m : 'a; .. > as 'a end
is not matched by the class type
object method m : < m : 'a > as 'a end
The method m has type "< m : 'a; .. > as 'a"
but is expected to have type "< m : 'b > as 'b"
Type "'a" is not compatible with type "< >"
|}];;
class c :
object
method foo : < foo : int; .. > -> < foo : int> -> unit
end =
object
method foo : 'a. (< foo : int; .. > as 'a) -> 'a -> unit = assert false
end;;
[%%expect {|
Lines 5-7, characters 2-5:
5 | ..object
6 | method foo : 'a. (< foo : int; .. > as 'a) -> 'a -> unit = assert false
7 | end..
Error: The class type
object method foo : (< foo : int; .. > as 'a) -> 'a -> unit end
is not matched by the class type
object method foo : < foo : int; .. > -> < foo : int > -> unit end
The method foo has type "'a. (< foo : int; .. > as 'a) -> 'a -> unit"
but is expected to have type
"'b. (< foo : int; .. > as 'b) -> < foo : int > -> unit"
Type "'c" is not compatible with type "< >"
|}];;
class c = (fun x -> object(_:'foo) end) 3;;
[%%expect {|
class c : object end
|}];;
class virtual c =
((fun (x : 'self -> unit) -> object(_:'self) end) (fun (_ : < a : int; .. >) -> ())
: object method virtual a : int end)
[%%expect {|
class virtual c : object method virtual a : int end
|}];;
class c = object
val x = 3
method o = {< x = 4; y = 5 >}
val y = 4
end;;
[%%expect {|
class c : object ('a) val x : int val y : int method o : 'a end
|}];;
class c : object('self) method m : < m : 'a; x : int; ..> -> unit as 'a end =
object (_ : 'self) method m (_ : 'self) = () end;;
[%%expect {|
Line 2, characters 4-52:
2 | object (_ : 'self) method m (_ : 'self) = () end;;
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Error: The class type
object ('a) method m : (< m : 'a -> unit; .. > as 'a) -> unit end
is not matched by the class type
object method m : < m : 'a; x : int; .. > -> unit as 'a end
The method m has type "(< m : 'a -> unit; .. > as 'a) -> unit"
but is expected to have type
"'b. (< m : 'c; x : int; .. > as 'b) -> unit as 'c"
Type "'a" is not compatible with type "< x : int; .. >"
|}];;
let is_empty (x : < >) = ()
class c = object (self) method private foo = is_empty self end;;
[%%expect {|
val is_empty : < > -> unit = <fun>
Line 2, characters 54-58:
2 | class c = object (self) method private foo = is_empty self end;;
^^^^
Error: The value "self" has type "< .. >" but an expression was expected of type
"< >"
Self type cannot be unified with a closed object type
|}];;
(* Warnings about private methods implicitly made public *)
let has_foo (x : < foo : 'a; .. >) = ()
class c = object (self) method private foo = 5 initializer has_foo self end;;
[%%expect {|
val has_foo : < foo : 'a; .. > -> unit = <fun>
Line 3, characters 10-75:
3 | class c = object (self) method private foo = 5 initializer has_foo self end;;
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Warning 15 [implicit-public-methods]: the following private methods were made public implicitly:
foo.
class c : object method foo : int end
|}];;
class type c = object(< foo : 'a; ..>) method private foo : int end;;
[%%expect {|
class type c = object method foo : int end
|}];;
class ['a] p = object (_ : 'a) method private foo = 5 end;;
class c = [ < foo : int; .. > ] p;;
[%%expect {|
class ['a] p :
object ('a) constraint 'a = < .. > method private foo : int end
class c : object method foo : int end
|}];;
(* Errors for undefined methods *)
class c = object method virtual foo : int end;;
[%%expect {|
Line 1, characters 10-45:
1 | class c = object method virtual foo : int end;;
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Error: This non-virtual class has virtual methods.
The following methods are virtual : "foo"
|}];;
class type ct = object method virtual foo : int end;;
[%%expect {|
Line 1, characters 16-51:
1 | class type ct = object method virtual foo : int end;;
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Error: This non-virtual class type has virtual methods.
The following methods are virtual : "foo"
|}];;
let o = object method virtual foo : int end;;
[%%expect {|
Line 1, characters 8-43:
1 | let o = object method virtual foo : int end;;
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Error: This object has virtual methods.
The following methods are virtual : "foo"
|}];;
class c = object(self) initializer self#foo end;;
[%%expect {|
Line 1, characters 35-39:
1 | class c = object(self) initializer self#foo end;;
^^^^
Error: This expression has no method "foo"
|}];;
let o = object(self) initializer self#foo end;;
[%%expect {|
Line 1, characters 33-37:
1 | let o = object(self) initializer self#foo end;;
^^^^
Error: This expression has no method "foo"
|}];;
let has_foo (x : < foo : int; ..>) = ()
class c = object(self) initializer has_foo self end;;
[%%expect {|
val has_foo : < foo : int; .. > -> unit = <fun>
Line 2, characters 10-51:
2 | class c = object(self) initializer has_foo self end;;
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Error: This non-virtual class has undeclared virtual methods.
The following methods were not declared : "foo"
|}];;
let o = object(self) initializer has_foo self end;;
[%%expect {|
Line 1, characters 41-45:
1 | let o = object(self) initializer has_foo self end;;
^^^^
Error: The value "self" has type "< >" but an expression was expected of type
"< foo : int; .. >"
The first object type has no method "foo"
|}];;
class c = object(_ : < foo : int; ..>) end;;
[%%expect {|
Line 1, characters 10-42:
1 | class c = object(_ : < foo : int; ..>) end;;
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Error: This non-virtual class has undeclared virtual methods.
The following methods were not declared : "foo"
|}];;
class type ct = object(< foo : int; ..>) end;;
[%%expect {|
Line 1, characters 16-44:
1 | class type ct = object(< foo : int; ..>) end;;
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Error: This non-virtual class type has undeclared virtual methods.
The following methods were not declared : "foo"
|}];;
let o = object(_ : < foo : int; ..>) end;;
[%%expect {|
Line 1, characters 8-40:
1 | let o = object(_ : < foo : int; ..>) end;;
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Error: This object has undeclared virtual methods.
The following methods were not declared : "foo"
|}];;
(* Shadowing/overriding methods in class types *)
class type c = object
val x : int
val x : float
end;;
[%%expect {|
class type c = object val x : float end
|}];;
class type c = object
val x : int
val mutable x : int
end;;
[%%expect {|
class type c = object val mutable x : int end
|}];;
class type c = object
val mutable x : int
val x : int
end;;
[%%expect {|
class type c = object val x : int end
|}];;
class type virtual c = object
val virtual x : int
val x : int
end;;
[%%expect {|
class type c = object val x : int end
|}];;
class type virtual c = object
val x : int
val virtual x : int
end;;
[%%expect {|
class type c = object val x : int end
|}];;
class type virtual c = object
val x : int
val virtual x : float
end;;
[%%expect {|
class type c = object val x : float end
|}];;
class c = object
method virtual private test : unit
method private test = ()
end
let () = (new c)#test
[%%expect {|
class c : object method private test : unit end
Line 6, characters 9-16:
6 | let () = (new c)#test
^^^^^^^
Error: This expression has type "c"
It has no method "test"
|}];;
class c = object
method virtual private test : unit
method test = ()
end
let () = (new c)#test
[%%expect {|
class c : object method test : unit end
|}];;
class virtual d = object
method virtual private test : unit
end
class c = object
inherit d
method private test = ()
end
let () = (new c)#test
[%%expect {|
class virtual d : object method private virtual test : unit end
class c : object method private test : unit end
Line 10, characters 9-16:
10 | let () = (new c)#test
^^^^^^^
Error: This expression has type "c"
It has no method "test"
|}];;
class c = object
inherit d
method test = ()
end
let () = (new c)#test
[%%expect {|
class c : object method test : unit end
|}];;
class foo =
object
method private f (b : bool) = b
inherit object
method f (b : bool) = b
end
end
let _ = (new foo)#f true
[%%expect {|
class foo : object method f : bool -> bool end
- : bool = true
|}];;
class c : object
method virtual m : int
end = object
method m = 9
end
[%%expect {|
Lines 1-3, characters 10-3:
1 | ..........object
2 | method virtual m : int
3 | end.........
Error: This non-virtual class type has virtual methods.
The following methods are virtual : "m"
|}];;
class virtual c : object
method virtual m : int
end = object
method m = 42
end
[%%expect {|
class virtual c : object method virtual m : int end
|}];;
class virtual cv = object
method virtual m : int
end
class c : cv = object
method m = 42
end
[%%expect {|
class virtual cv : object method virtual m : int end
Line 5, characters 10-12:
5 | class c : cv = object
^^
Error: This non-virtual class type has virtual methods.
The following methods are virtual : "m"
|}];;
class virtual c : cv = object
method m = 41
end
[%%expect {|
class virtual c : cv
|}];;
class c = cv
[%%expect {|
Line 1, characters 10-12:
1 | class c = cv
^^
Error: This non-virtual class has virtual methods.
The following methods are virtual : "m"
|}];;
class virtual c = cv
[%%expect {|
class virtual c : cv
|}];;
(** Test classes abbreviations with a recursive type *)
class ['a] c = object method m: (<x:'a; f:'b> as 'b) -> unit = fun _ -> () end
class d = ['a] c
[%%expect {|
class ['a] c : object method m : (< f : 'b; x : 'a > as 'b) -> unit end
Line 2, characters 0-16:
2 | class d = ['a] c
^^^^^^^^^^^^^^^^
Error: Some type variables are unbound in this type: class d : ['a] c
The method "m" has type "(< f : 'b; x : 'a > as 'b) -> unit" where "'a"
is unbound
|}]
|