Missing Copyright
Change-Id: Ieab61c7c07cbc8becebddc409c74e6ae2dbc90d4
diff --git a/src/test/examplesJava11/nestHostExample/BasicNestHostClassMerging.java b/src/test/examplesJava11/nestHostExample/BasicNestHostClassMerging.java
index 727973b..34b1b43 100644
--- a/src/test/examplesJava11/nestHostExample/BasicNestHostClassMerging.java
+++ b/src/test/examplesJava11/nestHostExample/BasicNestHostClassMerging.java
@@ -1,3 +1,7 @@
+// Copyright (c) 2019, the R8 project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
package nestHostExample;
public class BasicNestHostClassMerging {
diff --git a/src/test/examplesJava11/nestHostExample/BasicNestHostTreePruning.java b/src/test/examplesJava11/nestHostExample/BasicNestHostTreePruning.java
index 286010a..1df6467 100644
--- a/src/test/examplesJava11/nestHostExample/BasicNestHostTreePruning.java
+++ b/src/test/examplesJava11/nestHostExample/BasicNestHostTreePruning.java
@@ -1,3 +1,7 @@
+// Copyright (c) 2019, the R8 project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
package nestHostExample;
public class BasicNestHostTreePruning {
diff --git a/src/test/examplesJava11/nestHostExample/NestHostInlining.java b/src/test/examplesJava11/nestHostExample/NestHostInlining.java
index 97a4398..3d63701 100644
--- a/src/test/examplesJava11/nestHostExample/NestHostInlining.java
+++ b/src/test/examplesJava11/nestHostExample/NestHostInlining.java
@@ -1,3 +1,7 @@
+// Copyright (c) 2019, the R8 project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
package nestHostExample;
public class NestHostInlining {
diff --git a/src/test/examplesJava11/nestHostExample/NestHostInliningSubclasses.java b/src/test/examplesJava11/nestHostExample/NestHostInliningSubclasses.java
index fd31297..ba2bff0 100644
--- a/src/test/examplesJava11/nestHostExample/NestHostInliningSubclasses.java
+++ b/src/test/examplesJava11/nestHostExample/NestHostInliningSubclasses.java
@@ -1,3 +1,7 @@
+// Copyright (c) 2019, the R8 project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
package nestHostExample;
public class NestHostInliningSubclasses {
diff --git a/src/test/examplesJava11/nestHostExample/NeverInline.java b/src/test/examplesJava11/nestHostExample/NeverInline.java
index 809b9e7..16ce752 100644
--- a/src/test/examplesJava11/nestHostExample/NeverInline.java
+++ b/src/test/examplesJava11/nestHostExample/NeverInline.java
@@ -1,6 +1,7 @@
// Copyright (c) 2018, the R8 project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
+
package nestHostExample;
import java.lang.annotation.ElementType;
diff --git a/src/test/examplesJava11/nestHostExample/OutsideInliningNoAccess.java b/src/test/examplesJava11/nestHostExample/OutsideInliningNoAccess.java
index deb0548..63b32fa 100644
--- a/src/test/examplesJava11/nestHostExample/OutsideInliningNoAccess.java
+++ b/src/test/examplesJava11/nestHostExample/OutsideInliningNoAccess.java
@@ -1,3 +1,7 @@
+// Copyright (c) 2019, the R8 project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
package nestHostExample;
public class OutsideInliningNoAccess extends NestHostInlining.EmptyNoPrivAccess {
diff --git a/src/test/examplesJava11/nestHostExample/OutsideInliningWithAccess.java b/src/test/examplesJava11/nestHostExample/OutsideInliningWithAccess.java
index 92f8ca8..dcd5946 100644
--- a/src/test/examplesJava11/nestHostExample/OutsideInliningWithAccess.java
+++ b/src/test/examplesJava11/nestHostExample/OutsideInliningWithAccess.java
@@ -1,3 +1,7 @@
+// Copyright (c) 2019, the R8 project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
package nestHostExample;
public class OutsideInliningWithAccess extends NestHostInlining.EmptyWithPrivAccess {