blob: 5aadcc4a86865fefa7d3bc76d09432ee93ce9ea3 [file] [log] [blame]
// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "gen/thing.h"
namespace blink {
void NonGenThing();
}
void G() {
// Generated names should not attempt to be changed.
blink::genThing();
// Non-generated names should though.
blink::NonGenThing();
}