diff --git a/GaudiExamples/src/AlgTools/MyServiceWithTool.cpp b/GaudiExamples/src/AlgTools/MyServiceWithTool.cpp
index 0481ae3e0b1895c157b6509335bf87c2ee001387..81709d13add185968f89caddeda11b0b8b4e9592 100644
--- a/GaudiExamples/src/AlgTools/MyServiceWithTool.cpp
+++ b/GaudiExamples/src/AlgTools/MyServiceWithTool.cpp
@@ -1,5 +1,5 @@
 /***********************************************************************************\
-* (c) Copyright 1998-2019 CERN for the benefit of the LHCb and ATLAS collaborations *
+* (c) Copyright 1998-2021 CERN for the benefit of the LHCb and ATLAS collaborations *
 *                                                                                   *
 * This software is distributed under the terms of the Apache version 2 licence,     *
 * copied verbatim in the file "LICENSE".                                            *
@@ -22,6 +22,7 @@ namespace GaudiTesting {
 
   private:
     PublicToolHandle<IMyTool> m_tool{this, "MyTool", "MyTool"};
+    ToolHandle<IMyTool> m_privTool{this, "MyPrivateTool", ""};
   };
 
   DECLARE_COMPONENT( SvcWithTool )