Add the missing public: thanks, Fariborz

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@72528 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/SemaTemplate/example-dynarray.cpp b/test/SemaTemplate/example-dynarray.cpp
index 0fcaba3..51eece9 100644
--- a/test/SemaTemplate/example-dynarray.cpp
+++ b/test/SemaTemplate/example-dynarray.cpp
@@ -4,6 +4,7 @@
 
 template<typename T>
 class dynarray {
+public:
   dynarray() { Start = Last = End = 0; }
 
   dynarray(const dynarray &other) {