////////////////////////////////////////////////////////////////////////////////
// Test case file for checkstyle.
// Created: 2001
////////////////////////////////////////////////////////////////////////////////
package com.puppycrawl.tools.checkstyle;
/**
* Test case for detecting operator wrapping.
* @author Lars Khne
**/
class InputOpWrap
{
void test()
{
int x = 1 +
2 -
3
-
4;
x = x + 2;
boolean y = true
&&
false;
y = true &&
false;
y = false
&& true;
}
void testAssignment()
{
int x
= 0; //error when checking assignment operators with EOL wrap option
int y =
0;
}
<
T extends Comparable &
java.io.Serializable
>
void testGenerics1()
{
Comparable
<
String
>
c = new String();
}
}
|