Test suite results for test file webtbf/tw3450.pp

Test run data :

Free Pascal Compiler Test Suite Results

View Test suite results

Please specify search criteria:
File:
Operating system:
Processor:
Version
Date
Submitter
Machine
Comment
Limit
Cond
Category
Only failed tests
Hide skipped tests
List all tests

Test file "webtbf/tw3450.pp" information:

t_id 1416
t_adddate 2004/12/16
t_result 0
Flag t_fail set
t_knownrunerror 0

Detailed test run results:

Record count: 50

Total = 50

OK=50 Percentage= 100.00

Result type Cat. Count Percentage First date Last Date
Success, compilation failed 50 100.0 2024/05/18 01:37:00 36 2024/05/18 02:13:00 35
i386 19 38.0 2024/05/18 01:37:00 36 2024/05/18 02:10:00 30
x86_64 29 58.0 2024/05/18 01:39:00 15 2024/05/18 02:13:00 35
aarch64 2 4.0 2024/05/18 01:46:00 37 2024/05/18 02:03:00 34
linux 48 96.0 2024/05/18 01:37:00 36 2024/05/18 02:13:00 35
win32 1 2.0 2024/05/18 02:04:00 34 2024/05/18 02:04:00 34
go32v2 1 2.0 2024/05/18 01:45:00 54 2024/05/18 01:45:00 54
3.3.1 30 60.0 2024/05/18 01:37:00 36 2024/05/18 02:11:00 26
3.2.3 20 40.0 2024/05/18 01:37:00 47 2024/05/18 02:13:00 35

Source:

{ %fail }

{ Source provided for Free Pascal Bug Report 3450 }
{ Submitted by "Vincent Snijders" on  2004-12-11 }
{ e-mail: vsnijders@quicknet.nl }

{$mode objfpc}{$H+}

uses
  uw3450;

var
  A: TA;

begin
  A := TA.Create;
  // no error here
  with A do
    I := 9;
  // this fails, correctly
  A.I := 9;
end.

Link to SVN view of webtbf/tw3450.pp source.