blob: d8e459233629bd2417592308abcce054c1dd1661 [file] [log] [blame]
Benjamin Kramer29f90e82012-07-12 08:20:49 +00001// RUN: %clang_cc1 -fsyntax-only %s 2>&1 | FileCheck -strict-whitespace %s
Nico Webercd8a5462012-07-20 06:44:52 +00002// PR13312
Benjamin Kramer29f90e82012-07-12 08:20:49 +00003
4struct Foo {
5 int bar;
6};
7
8void test1() {
9 struct Foo foo;
10 (&foo)☃>bar = 42;
11// CHECK: error: expected ';' after expression
12// Make sure we emit the fixit right in front of the snowman.
Benjamin Kramer20863e362012-07-12 08:34:31 +000013// CHECK: {{^ \^}}
14// CHECK: {{^ ;}}
Benjamin Kramer29f90e82012-07-12 08:20:49 +000015}