Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions tests/format_probe.cpp
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
// Scratch probe -- DO NOT MERGE. Exists only to prove two CI lints fire.
//
// 1. the quoted public include below must trip
// `lint (source conventions)` -> normalise-include-delimiters (RED)
// 2. the deliberate mis-formatting must make
// `lint (clang-format, changed lines)` report a diff and stay GREEN
#include "fastfields/core/defines.h"

namespace ff {
int scratch_probe( int a,int b ) {
if(a>b){return a ;}
return b;}
} // namespace ff
Loading