Browse Source

* new test

git-svn-id: trunk@7382 -
peter 18 years ago
parent
commit
55f79a37b6
2 changed files with 16 additions and 0 deletions
  1. 1 0
      .gitattributes
  2. 15 0
      tests/webtbs/tw8523.pp

+ 1 - 0
.gitattributes

@@ -8212,6 +8212,7 @@ tests/webtbs/tw8434.pp svneol=native#text/plain
 tests/webtbs/tw8462.pp svneol=native#text/plain
 tests/webtbs/tw8465.pp svneol=native#text/plain
 tests/webtbs/tw8513.pp svneol=native#text/plain
+tests/webtbs/tw8523.pp svneol=native#text/plain
 tests/webtbs/tw8525.pp svneol=native#text/plain
 tests/webtbs/tw8573.pp svneol=native#text/plain
 tests/webtbs/tw8615.pp svneol=native#text/plain

+ 15 - 0
tests/webtbs/tw8523.pp

@@ -0,0 +1,15 @@
+{$MODE DELPHI}
+
+type
+TDADataTable =class(TObject)
+public
+function GetAsCurrency(Index: integer): Currency;safecall;
+end;
+
+function TDADataTable.GetAsCurrency(Index: integer): Currency;
+begin
+Result:=0;
+end;
+
+begin
+end.