Last active
December 26, 2015 23:18
-
-
Save exterm/7229007 to your computer and use it in GitHub Desktop.
Revisions
-
exterm revised this gist
Oct 30, 2013 . 2 changed files with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes.File renamed without changes. -
exterm renamed this gist
Oct 30, 2013 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
exterm created this gist
Oct 30, 2013 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,12 @@ /tmp$ dart --version Dart VM version: 0.8.5.1_r28990 (Tue Oct 22 04:50:58 2013) on "linux_x64" /tmp$ dartanalyzer test.dart Analyzing test.dart... No issues found /tmp$ dart -c test.dart Unhandled exception: type 'int' is not a subtype of type 'double' of 'x'. #0 Point.Point (dart:math/point.dart:13) #1 main (file:///tmp/test.dart:4:25) This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,5 @@ import 'dart:math'; void main() { Point<double> p = new Point<double>(); }