diff options
author | sagitario <sagitario@fc51e93f-b9fe-4711-8d8d-3ae870c5f7d8> | 2010-06-23 07:27:52 (GMT) |
---|---|---|
committer | sagitario <sagitario@fc51e93f-b9fe-4711-8d8d-3ae870c5f7d8> | 2010-06-23 07:27:52 (GMT) |
commit | 81f3ca8636f863d32f0da61c214077305f28ccfc (patch) | |
tree | 7fe1c6dfdfbe273b0f429974284b7c25d09a5899 /test | |
parent | 33e49f0ed70a8277e0b14365c823accb9c29f120 (diff) | |
download | cv2pdb-81f3ca8636f863d32f0da61c214077305f28ccfc.zip cv2pdb-81f3ca8636f863d32f0da61c214077305f28ccfc.tar.gz cv2pdb-81f3ca8636f863d32f0da61c214077305f28ccfc.tar.bz2 |
* improved support for 64-integer types
* now adding properties "has nested type" and "is nested type" to class/struct/union/enum types
* better support for enumerators: now added as user defined types (DMD patch needed)
Diffstat (limited to 'test')
-rw-r--r-- | test/cvtest.d | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/cvtest.d b/test/cvtest.d index 5deae42..8be7b67 100644 --- a/test/cvtest.d +++ b/test/cvtest.d @@ -242,6 +242,7 @@ int main2(char[][]argv) int main(char[][]argv)
{
long lng = 3;
+ ulong ulng = 4;
arrays();
outer_func(3);
@@ -323,3 +324,4 @@ void dmd_quirks() long quirk_long; // written as delegate<void*,int>
ulong quirk_ulong; // written as int[]
}
+
|