소스 검색

* improved variant type casts

git-svn-id: trunk@1912 -
florian 20 년 전
부모
커밋
55d881615a
2개의 변경된 파일8개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      .gitattributes
  2. 7 0
      tests/test/testv10.pp

+ 1 - 0
.gitattributes

@@ -5325,6 +5325,7 @@ tests/test/testmovd.pp svneol=native#text/plain
 tests/test/tests.pp svneol=native#text/plain
 tests/test/testsse2.pp svneol=native#text/plain
 tests/test/testv1.pp svneol=native#text/plain
+tests/test/testv10.pp svneol=native#text/plain
 tests/test/testv2.pp svneol=native#text/plain
 tests/test/testv3.pp svneol=native#text/plain
 tests/test/testv4.pp svneol=native#text/plain

+ 7 - 0
tests/test/testv10.pp

@@ -0,0 +1,7 @@
+uses
+  variants;
+var
+  lVar : Variant;
+begin
+  lVar := VarAsType('',varEmpty);
+end.