mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-28 03:17:31 +09:00
14 lines
289 B
C++
14 lines
289 B
C++
|
|
// Copyright (c) 2012 Google Inc. All rights reserved.
|
||
|
|
// Use of this source code is governed by a BSD-style license that can be
|
||
|
|
// found in the LICENSE file.
|
||
|
|
|
||
|
|
int f(int x) {
|
||
|
|
return 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
int main() {
|
||
|
|
double x = 10.1;
|
||
|
|
// Cause a level 2 warning (C4243).
|
||
|
|
return f(x);
|
||
|
|
return 0;
|
||
|
|
}
|