1 // This file is distributed under the University of Illinois Open Source
2 // License. See LICENSE.TXT for details.
3 
4 // Simple test for a fuzzer. Make sure we abort if Data is overwritten.
5 #include <cstdint>
6 #include <iostream>
7 
8 extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
9   if (Size)
10     *const_cast<uint8_t*>(Data) = 1;
11   return 0;
12 }
13 
14