etc/services - sync with NetBSD-8
[minix.git] / external / bsd / llvm / dist / clang / test / FixIt / no-fixit.cpp
blob7e8e1fbbb07bdc90cd33606372edd058b7dfd482
1 // RUN: not %clang_cc1 -fdiagnostics-parseable-fixits -x c++ -std=c++11 %s 2>&1 | FileCheck %s
3 // test that the diagnostics produced by this code do not include fixit hints
5 // CHECK-NOT: fix-it:
7 template<template<typename> +> void func();
9 struct {
10 void i() {
11 (void)&i;
13 } x;