From 45f2b4c3eabb6ce6d5e5c849a26f0a102f5472ca Mon Sep 17 00:00:00 2001 From: "SND\\kernelnet_cp" Date: Tue, 15 May 2012 14:47:22 +0000 Subject: [PATCH] [0.1.x] updated: tests for typedVar git-svn-id: https://pykd.svn.codeplex.com/svn@76357 9b283d60-5439-405e-af05-b73fd8c4d996 --- test/targetapp/targetapp.cpp | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/test/targetapp/targetapp.cpp b/test/targetapp/targetapp.cpp index bcc6d04..734eb1b 100644 --- a/test/targetapp/targetapp.cpp +++ b/test/targetapp/targetapp.cpp @@ -56,13 +56,21 @@ public: void baseMethod() const {} virtual void virtFunc() = 0; virtual void virtFunc2() = 0; + + classBase() : + m_baseField( -100 ) + {} }; class anotherBase { static std::string m_stdstr; ULONG m_count; + int m_baseField; public: - anotherBase() : m_count( 1234 ){} + anotherBase() : + m_count( 1234 ), + m_baseField( 100 ) + {} }; std::string anotherBase::m_stdstr = "hello";