diff --git a/sycl/test-e2e/Annotated_arg_ptr/annotated_arg.cpp b/sycl/test-e2e/Annotated_arg_ptr/annotated_arg.cpp index d6774bc7ae70a..997381d0f4941 100644 --- a/sycl/test-e2e/Annotated_arg_ptr/annotated_arg.cpp +++ b/sycl/test-e2e/Annotated_arg_ptr/annotated_arg.cpp @@ -3,7 +3,6 @@ // #include "common.hpp" -#include struct test { int a; int *b; @@ -84,7 +83,6 @@ int main() { auto a_ptr = annotated_arg{a}; for (int i = 0; i < 8; i++) a_ptr[i] = i; - std::cout << "Hello!" << std::endl; int *b = nullptr; try { b = malloc_shared(4, Q);