Index: tools/clang/rewrite_scoped_array/tests/test-original.cc |
diff --git a/tools/clang/rewrite_scoped_array/tests/test-original.cc b/tools/clang/rewrite_scoped_array/tests/test-original.cc |
deleted file mode 100644 |
index e0408ca7503b03c0e6c1a06b0a5639f5f7bf5d0f..0000000000000000000000000000000000000000 |
--- a/tools/clang/rewrite_scoped_array/tests/test-original.cc |
+++ /dev/null |
@@ -1,21 +0,0 @@ |
-// Copyright (c) 2013 The Chromium Authors. All rights reserved. |
-// Use of this source code is governed by a BSD-style license that can be |
-// found in the LICENSE file. |
- |
-template <class T> class scoped_array { |
- private: |
- T* data_; |
-}; |
- |
-class TestClass { |
- private: |
- scoped_array<int> test_field_; |
-}; |
- |
-scoped_array<int> TestFunction(scoped_array<int> x, scoped_array<int>) { |
- scoped_array<scoped_array<int>(scoped_array<int> test, scoped_array<int>)> y; |
- scoped_array<int>(*function_pointer)(scoped_array<int> test, |
- scoped_array<int>); |
- scoped_array<int> test_variable; |
-} |
- |