1RUN: printf "a\nb" | FileCheck %s -check-prefix=TEST1
2RUN: echo oo | FileCheck %s -check-prefix=TEST2
3
4Check that CHECK-NEXT without a space after the colon works.
5TEST1:a
6TEST1-NEXT:b
7
8Check that CHECK-NOT without a space after the colon works.
9TEST2-NOT:foo
10