Bug 392190 - [Alf] Implicit variable declarations are not supported
Summary: [Alf] Implicit variable declarations are not supported
Status: NEW
Alias: None
Product: Papyrus
Classification: Modeling
Component: Core (show other bugs)
Version: unspecified   Edit
Hardware: PC Windows 7
: P3 normal (vote)
Target Milestone: ---   Edit
Assignee: Project Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-10-17 11:21 EDT by Arnaud Cuccuru CLA
Modified: 2017-09-12 10:21 EDT (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Arnaud Cuccuru CLA 2012-10-17 11:21:29 EDT
Implicit variable declarations are not supported, e.g.:
c = 10 ; // Not possible

requires something like:
Integer c = 10 ;

or

let c : Integer = 10 ;