/*
* @(#)bool.h 1.5 96/11/23
*
* Copyright (c) 1995, 1996 Sun Microsystems, Inc. All Rights Reserved.
*
* This software is the confidential and proprietary information of Sun
* Microsyst
/**
* bool.java
*
* This file was generated by XMLSpy 2007sp2 Enterprise Edition.
*
* YOU SHOULD NOT MODIFY THIS FILE, BECAUSE IT WILL BE
* OVERWRITTEN WHEN YOU RE-RUN CODE GENERATION.
*
package com.catking.Utility;
public class Bool {
public boolean mark;
public Bool(boolean mark){
this.mark = mark;
}
@Override
public boolean equals(Object obj) {
// TODO Auto-
/*-------------------------------------------------------------------------
*
* bool.c
* Functions for the built-in type "bool".
*
* Portions Copyright (c) 1996-2008, PostgreSQL Global Developm
/* Check that sizeof(bool) is 4 if we don't use special options. */
/* Matt Austern */
/* { dg-do run { target powerpc*-*-darwin* } } */
/* { dg-skip-if "" { powerpc*-*-darwin* }
/* Check that sizeof(bool) is 1 if we use the -mone-byte-bool option. */
/* Matt Austern */
/* { dg-do run { target powerpc*-*-darwin* } } */
/* { dg-options "-mone-byte-bool" } *
// { dg-do assemble }
// Testcase for uses of bool.
int i,j,k;
/* Check that types of certain expressions are bool. */
void f ()
{
i ? j == k : true;
i ? j < k : true;
i ? j && k : true;
}