blob: 7e8e1fbbb07bdc90cd33606372edd058b7dfd482 [file] [log] [blame]
Rafael Espindola96e78132013-07-04 16:16:58 +00001// RUN: not %clang_cc1 -fdiagnostics-parseable-fixits -x c++ -std=c++11 %s 2>&1 | FileCheck %s
David Blaikie9df1b962012-04-06 05:26:43 +00002
3// test that the diagnostics produced by this code do not include fixit hints
4
5// CHECK-NOT: fix-it:
6
7template<template<typename> +> void func();
David Blaikieabeadfb2012-10-11 22:55:07 +00008
9struct {
10 void i() {
11 (void)&i;
12 }
13} x;